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(ElementU
element-ui:饿了么开发的 基于vue上的bootstrap
>: cnpm i element-ui -S
import ElementUI from ‘element-ui‘ import ‘element-ui/lib/theme-chalk/index.css‘ Vue.use(ElementUI);
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>