• 1.3 vue ui框架-element-ui框架


    1 前言

    ElementUI是一套基于VUE2.0的桌面端组件库,ElementUI提供了丰富的组件帮助开发人员快速构建功能强大、风格统一的页面。

    ElementUI官网 https://element.eleme.io

    2 安装

    运行命令

    cnpm i element-ui -S

    -S表示只在该项目下安装,不是全局安装

    注意:要跳到项目所在目录运行

    会在node_modules文件夹下生成element-ui子目录

    3 应用

    1.1 创建第一个vue项目-CSDN博客生成的项目。

    3.1 在src/main.js中引入element组件,修改后代码如下:

    1. // The Vue build version to load with the `import` command
    2. // (runtime-only or standalone) has been set in webpack.base.conf with an alias.
    3. import Vue from 'vue'
    4. import App from './App'
    5. import router from './router'
    6. /*引入element组件*/
    7. import ElementUI from 'element-ui';
    8. import 'element-ui/lib/theme-chalk/index.css';
    9. Vue.use(ElementUI);
    10. Vue.config.productionTip = false
    11. /* eslint-disable no-new */
    12. new Vue({
    13. el: '#app',
    14. router,
    15. components: { App },
    16. template: ''
    17. })

    3.2 修改src/components/HelloWorld.vue代码如下

    1. <template>
    2. <div class="hello">
    3. <h1>{{ msg }}</h1>
    4. <el-row>
    5. <el-button>默认按钮</el-button>
    6. <el-button type="primary">主要按钮</el-button>
    7. <el-button type="success">成功按钮</el-button>
    8. <el-button type="info">信息按钮</el-button>
    9. <el-button type="warning">警告按钮</el-button>
    10. <el-button type="danger">危险按钮</el-button>
    11. </el-row>
    12. </div>
    13. </template>
    14. <script>
    15. export default {
    16. name: "HelloWorld",
    17. data() {
    18. return {
    19. msg: "使用element-ui测试",
    20. };
    21. },
    22. };
    23. </script>
    24. <!-- Add "scoped" attribute to limit CSS to this component only -->
    25. <style scoped>
    26. h1,
    27. h2 {
    28. font-weight: normal;
    29. }
    30. ul {
    31. list-style-type: none;
    32. padding: 0;
    33. }
    34. li {
    35. display: inline-block;
    36. margin: 0 10px;
    37. }
    38. a {
    39. color: #42b983;
    40. }
    41. </style>

    3.3 运行效果

    在cmd运行命令npm run dev 然后访问http://localhost:8080,效果如下:

  • 相关阅读:
    修改 ModelScope 默认缓存路径
    多路查找树
    蓝牙查看接收到GIF格式的图片报错问题
    leetcode 88:合并两个有序数组 。 双指针解法
    js 小数相加 精度
    mysql备份与还原
    History、Location
    zabbix模板监控和自定义监控
    6.串口、时钟
    为什么要在网站上安装SSL证书?
  • 原文地址:https://blog.csdn.net/qq_28742901/article/details/136377604