element-ui

前端之家收集整理的这篇文章主要介绍了element-ui前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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>

猜你在找的Bootstrap相关文章