官网https://element.eleme.cn/2.0/#/zh-CN/component/quickstart
一、安装
yarn add element-ui 或者npm i element-ui -S
二、引入elment
main.js中
import Vue from 'vue';import ElementUI from 'element-ui';import 'element-ui/lib/theme-chalk/index.css';import App from './App.vue';Vue.config.productionTip = falseVue.use(ElementUI);new Vue({el: '#app',render: h => h(App)});
