element-ui 是饿了么前端出品的基于 Vue.js的 后台组件库,方便程序员进行页面快速布局和构建

    官网: http://element-cn.eleme.io/#/zh-CN

    创建 06-element-ui.html

    将element-ui引入到项目
    image.png

    1、引入css

    1. <!-- import CSS -->
    2. <link rel="stylesheet" href="element-ui/lib/theme-chalk/index.css">

    2、引入js

    1. <!-- import Vue before Element -->
    2. <script src="vue.min.js"></script>
    3. <!-- import JavaScript -->
    4. <script src="element-ui/lib/index.js"></script>

    3、编写html

    1. <div id="app">
    2. <el-button @click="visible = true">Button</el-button>
    3. <el-dialog :visible.sync="visible" title="Hello world">
    4. <p>Try Element</p>
    5. </el-dialog>
    6. </div>

    关于.sync的扩展阅读
    https://www.jianshu.com/p/d42c508ea9de

    4、编写js

    1. <script>
    2. new Vue({
    3. el: '#app',
    4. data: function () {//定义Vue中data的另一种方式
    5. return { visible: false }
    6. }
    7. })
    8. </script>