0.0.2 • Published 7 years ago
lunzi v0.0.2
lunzi --- VUE UI组件
介绍
开始使用
CSS样式
- 请在使用前将css的box-sizing 设置为border-box
IE8及以上浏览器均支持此样式*{box-sizing: border-box;} *::before{box-sizing: border-box;} *::after{box-sizing: border-box;}
- 设置默认颜色等变量(后续会改为SCSS变量)
IE15及以上浏览器均支持此样式:root { --button-height: 32px; --font-size: 14px; --button-bg: white; --button-active-bg: #eee; --border-radius: 4px; --color: #333; --border-color: #999; --border-color-hover: #666; }
- 请在使用前将css的box-sizing 设置为border-box
安装lunzi
npm install -s lunzi
引入lunzi
import {Button, ButtonGroup, Icon} from 'lunzi' import 'lunzi/dist/index.css' export default { name: 'app', components: { 'g-button': Button, 'g-icon': Icon } }