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)
原文地址:https://www.cnblogs.com/lipu12281/p/11883058.html