-
添加 CSS 样式 使用该仓库时,
请开启border-box模式
*,*::before,*::after {box-sizing: border-box;}
你还需要设置默认颜色等变量(后续改为SCSS变量)
html { --button-height: 32px; --font-size: 14px; --button-bg: #ffffff; --button-active-bg: #eeeeee; --color: #333; --border-color: #999; --border-color-hover: #666; --border-radius: 4px }
IE15 及以上浏览器支持此样式
-
安装 v-stars-demo
npm install v-stars-demo --save
-
引入 v-stars-demo
import {Button, Icon} from 'v-stars-demo' import 'v-stars-demo/dist/index.css' export default { name: "App", components: { HelloWorld, "s-icon": Icon, "s-button": Button, } }