一、安装
npm i element-ui -s
二、在main.js中引入
1.完整引入
import Vue from 'vue';
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
import App from './App.vue';
Vue.use(ElementUI);
new Vue({
el: '#app',
render: h => h(App)
});
2.按需引入
①先安装 npm install babel-plugin-component -D
②然后,将 .babelrc 修改为:
{
"presets": [["es2015", {
"modules": false }]],
"plugins": [
[
"component",
{
"libraryName": "element-ui",
"styleLibraryName": "theme-chalk"
}
]
]
}
③引入部分组件,比如 Button 和 Select,在 main.js 中写入以下内容:
import Vue from 'vue';
import {
Button, Select } from 'element-ui';
import App from './App.vue';
Vue.use(Button)
Vue.use(Select)
/* 或写为
Vue.component(Button.name, Button);
Vue.component(Select.name, Select);
*/
new Vue({
el: '#app',
render: h => h(App)
});