pointui
v1.0.2
Published
基于 VUe 的 UI 框架
Downloads
9
Readme
PointUI - 一款基于 Vue 的 UI 库
作者: Chauncey
介绍
这是我在学习 Vue 的时候做的 UI 框架
开始使用
安装
- 添加 Css 样式
请在使用之前开启 border-box 在安装app.js设置样式
*{ padding: 0; margin: 0; box-sizing: border-box; }
需要设置默认颜色和变量
- 安装 pointui
npm i --save pointui
- 引入
import {Button,ButtonGroup,Icon} from 'pointui'
import 'point/dist/index.css'
export default {
name: 'app',
components: {
'g-button': Button,
'g-icon': Icon
}
}