久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術(shù)文章
文章詳情頁

vue3集成Element-Plus之全局導(dǎo)入和按需導(dǎo)入

瀏覽:44日期:2022-06-13 10:06:27
目錄element-plus集成1. 全局引入2. 局部引入(按需引入)2.1 手動引入1.安裝插件:2.配置vue.config.js2.3 自動導(dǎo)入組件以及樣式[推薦】1.安裝插件:2.配置vue.config.js(其他配置方式看官網(wǎng))3 直接使用總結(jié)element-plus集成

Element Plus,一套為開發(fā)者、設(shè)計師和產(chǎn)品經(jīng)理準備的基于 Vue 3.0 的桌面端組件庫:

在Vue2中使用element-ui,而element-plus是element-ui針對于vue3開發(fā)的一個UI組件庫;它的使用方式和很多其他的組件庫是一樣的,所以學(xué)會element-plus,其他類似于ant-design-vue、NaiveUI、VantUI都是差不多的;移動端使用VantUI | MintUI安裝element-plusnpm install element-plus1. 全局引入

一種引入element-plus的方式是全局引入,代表的含義是所有的組件和插件都會被自動注冊:

//main.tsimport { createApp } from 'vue';import App from './App.vue';import ElementPlus from 'element-plus'import 'element-plus/dist/index.css'import router from './router'import store from './store'createApp(App).use(router).use(store).use(ElementPlus).mount('#app')2. 局部引入(按需引入)

也就是在開發(fā)中用到某個組件對某個組件進行引入:

2.1 手動引入<template> <div id='app'> <el-row class='mb-4'><el-button disabled>Default</el-button><el-button type='primary' disabled>Primary</el-button><el-button type='success' disabled>Success</el-button><el-button type='info' disabled>Info</el-button><el-button type='warning' disabled>Warning</el-button><el-button type='danger' disabled>Danger</el-button> </el-row> </div></template><script lang='ts'>import { defineComponent } from 'vue'import { ElButton } from 'element-plus'export default defineComponent({ name: 'App', components: { ElButton }})</script><style lang='less'></style>

但是我們會發(fā)現(xiàn)是沒有對應(yīng)的樣式的,引入樣式有兩種方式:

全局引用樣式;import 'element-plus/dist/index.css'

局部引用樣式(通過 unplugin-element-plus 插件);

1.安裝插件:npm install unplugin-element-plus -D2.配置vue.config.jsconst ElementPlus= require('unplugin-element-plus/webpack');module.exports = { configureWebpack: { resolve: { alias: {components: '@/components' } }, //配置webpack自動按需引入element-plus樣式, plugins: [ElementPlus()] }};

但是這里依然有個弊端:

這些組件我們在多個頁面或者組件中使用的時候,都需要導(dǎo)入并且在components中進行注冊;所以我們可以將它們在全局注冊一次;import { ElButton, ElTable, ElAlert, ElAside, ElAutocomplete, ElAvatar, ElBacktop, ElBadge,} from 'element-plus'const app = createApp(App)const components = [ ElButton, ElTable, ElAlert, ElAside, ElAutocomplete, ElAvatar, ElBacktop, ElBadge]for (const cpn of components) { app.component(cpn.name, cpn)}2.3 自動導(dǎo)入組件以及樣式[推薦】1.安裝插件:npm install -D unplugin-vue-components unplugin-auto-import2.配置vue.config.js(其他配置方式看官網(wǎng))const AutoImport = require('unplugin-auto-import/webpack');const Components = require('unplugin-vue-components/webpack');const { ElementPlusResolver } = require('unplugin-vue-components/resolvers');module.exports = { configureWebpack: { resolve: { alias: {components: '@/components' } }, //配置webpack自動按需引入element-plus, plugins: [ AutoImport({resolvers: [ElementPlusResolver()] }), Components({resolvers: [ElementPlusResolver()] }) ] }};3 直接使用<template> <div id='app'> <el-row class='mb-4'><el-button disabled>Default</el-button><el-button type='primary' disabled>Primary</el-button><el-button type='success' disabled>Success</el-button><el-button type='info' disabled>Info</el-button><el-button type='warning' disabled>Warning</el-button><el-button type='danger' disabled>Danger</el-button> </el-row> </div></template><script lang='ts'>import { defineComponent } from 'vue'export default defineComponent({})</script><style lang='less'></style>總結(jié)

到此這篇關(guān)于vue3集成Element-Plus之全局導(dǎo)入和按需導(dǎo)入的文章就介紹到這了,更多相關(guān)Element-Plus全局導(dǎo)入和按需導(dǎo)入內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!

標簽: JavaScript
主站蜘蛛池模板: 商河县| 兴城市| 江油市| 织金县| 江川县| 成武县| 云安县| 双城市| 盐津县| 惠州市| 嵩明县| 信阳市| 威海市| 海安县| 彭山县| 泰宁县| 临江市| 乐至县| 定边县| 申扎县| 津市市| 唐山市| 祁东县| 乌鲁木齐县| 黔南| 海门市| 舟曲县| 临潭县| 西吉县| 西丰县| 营口市| 博兴县| 永康市| 鄯善县| 乌审旗| 中卫市| 怀远县| 射洪县| 元江| 乡宁县| 韩城市|