vue引入ElementUI库

element国内网站:https://element.eleme.cn/#/zh-CN

引入ElementUI命令:npm install element-ui --save   (网速不好用cnpm)

在项目src目录下的main.js中引入:

import ElementUI from 'element-ui'
import 'element-ui/lib/theme-default/index.css'


// 全局使用
Vue.use(ElementUI);

猜你喜欢

转载自www.cnblogs.com/Ananiah/p/11129704.html