一、安装Element库
1.1在当前项目下输入
npm install [email protected]
1.2打开vscode查看node_modules依赖包是否有element-ui有说明安装成功
二、引入element-u组件库,打开项目中src目录中main.js引入一下代码
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
Vue.use(ElementUI);