vue中element-ui按需引入

首先

 npm i element-ui
npm install babel-plugin-component -D

其次,更改.babelrc文件

 

 具体更改如下:

    "plugins": [
......
...... [
"component", { "libraryName": "element-ui", "styleLibraryName": "theme-chalk" } ] ]

 之后在main.js中按需引入即可

 

 

import {Button} from 'element-ui'
Vue.use(Button)

 

posted @ 2019-11-18 16:32  lipu1993  阅读(689)  评论(0编辑  收藏  举报