element-ui:饿了么开发的 基于vue上的bootstrap
安装:项目目录下的终端
>: cnpm i element-ui -S
配置:main.js
import ElementUI
from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
Vue.use(ElementUI);
使用:官方API
https://element.eleme.cn/
#/zh-CN/component/installation
<!--案例-->
<el-row>
<el-button>默认按钮</el-button>
<el-button type=
"primary">主要按钮</el-button>
<el-button type=
"success">成功按钮</el-button>
<el-button type=
"info">信息按钮</el-button>
<el-button type=
"warning">警告按钮</el-button>
<el-button type=
"danger">危险按钮</el-button>
</el-row>
转载于:https://www.cnblogs.com/HZLS/p/11348644.html