1、官网链接:Element - The world's most popular Vue UI framework
2、如何使用:点击组件
3、先安装
4、
npm i element-ui -S
5、直接复制代码就行,详情请看javaweb专栏,前后端分离------后端创建笔记(04)前后端对接
6、在src下的main.js中指定当前项目中使用elementui
1. import ElementUI from 'element-ui'; 2. import 'element-ui/lib/theme-chalk/index.css';
import ElementUI from 'element-ui';
import 'element-ui/lib/theme-chalk/index.css';
7、将elementui注册到vue实例上,在main.js中进行使用
Vue.use(ElementUI);
Vue.use(ElementUI);
8、最常用的Vue组件库
PC 端
Element UI(https://element.eleme.cn/#/zh-CN)
View UI(http://v1.iviewui.com/)
移动端
Mint UI(http://mint-ui.github.io/#!/zh-cn)