0.0.3 • Published 2 years ago

ice-ui-test v0.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

ice-ui 一个 Vue UI 组件

介绍

这是我在学习Vue过程中做的一个UI框架,希望对你有用

开始使用

  1. CSS样式 使用本框架前,请在CSS中开启border-box
    *,*::before,*::after{box-sizing: border-box;}
    你还需要设置默认颜色等变量(后续会改为SCSS变量)
            :root {
                --button-height: 32px;
                --button-bg: white;
                --button-active-bg: #eee;
                --font-size: 14px;
                --border-radius: 4px;
                --color: #999;
                --border-color: #999;
                --border-color-hover: #666;
            }
    IE 15 及以上浏览器都支持此样式
  2. 安装 ice-ui
        npm i --save ice-ui-test
  3. 引入
    import { Button, ButtonGroup, Icon } from 'ice-ui-test'
    import 'ice-ui-test/dist/index.css'
    Vue.component(Button.name, Button)

文档

提问

变更记录

联系方式

贡献代码

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago