zoukankan      html  css  js  c++  java
  • UI库

    UI库
    PC端
    element­ui 饿了么(推荐) 

    1、官网
    https://element.eleme.cn/#/zh-CN

    2、安装
    npm i element-ui -S

    3、在main.js中引入
    import ElementUi from "element-ui"
    import "element-ui/lib/theme-chalk/index.css"
    Vue.use(ElementUi)

    iview
    官网:http://v1.iviewui.com

    移动端
    mint­ui 饿了么(不推荐) 
    官网:http://mint­ui.github.io/#!/zh­cn 

    vant(推荐) 
    官网:https://vant­contrib.gitee.io/vant/#/zh­CN/

    改样式
    1、微调UI的样式,选中你要的类名,修改 

    2、如果1不行,加 !important
    .hehehe{
    background: purple !important;
    border-color: purple !important;
    }

    3、如果1和2都不行,可以借助stylus解决
    安装方式
    npm i stylus stylus-loader --save

  • 相关阅读:
    MySQL 分组
    MySQL LIKE 子句
    MySQL DELETE 语句
    MySQL UPDATE 查询
    MySQL where 子句
    MySQL 插入数据
    MySQL 查询数据
    MySQL 删除数据表
    MySQL 创建数据表
    MySQL 数据类型
  • 原文地址:https://www.cnblogs.com/shihaiying/p/14038502.html
Copyright © 2011-2022 走看看