本框架主要用以学习如何造轮子。
-
添加 CSS 样式 使用本框架前,请在CSS中开启border-box
*,*::before,*::after { box-sizing: border-box; }
你还需要设置默认颜色等变量(后续会改 SCSS 变量)
: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; }
IE 15 及以上浏览器都支持此样式
-
安装 gulu
npm i -S mygulu-demo-test-1-1
-
引入 gulu
import {Button, ButtonGroup, Icon} from 'mygulu-demo-test-1-1' import 'mygulu-demo-test-1-1/dist/index.css' export default { name: 'App', components: { HelloWorld, 'g-button': Button, "g-icon": Icon } }