vue 组件
1.添加 css 样式
使用本框架前,请在 css 中开启 border-box (IE 8 及以上浏览器都次支持此样式)
*, *::afer, *::before{ box-sizing: border-box}
你还需要设置默认颜色变量(IE 15 及以上浏览器都次支持此样式)
2.安装
npm i -S qinze-test
3.引入
import { Button } from 'qinze-test'
import 'qinze-test/dist/index.css'
export default {
name: 'App',
components: {
'g-button': Button
}
}