# wheel **Repository Path**: fanison/wheel ## Basic Information - **Project Name**: wheel - **Description**: 预览链接 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-06-25 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Wheel 一个 Vue UI 组件 ## 介绍 这是我在学习 Vue 过程中做的一个 UI 框架, 希望对你有用。 ## 开始使用 1. 添加 CSS 样式 使用本框架前,请在 CSS 中开启 border-box ``` *, *::before, *::after{ box-sizing: border-box; } ``` IE 8 及以上浏览器都支持此样式 2. 安装 wheel-fanison ``` npm i --save wheel-fanison ``` 3. 引入 wheel-fanison ``` import {Button. ButtonGroup, Icon} from 'wheel-fanison' import 'wheel-fanison/dist/index.css' export default { name: 'app', components: { 'g-button': Button, 'g-icon': Icon } } ```