Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/real-jacket/gulu
一个用vue制作的UI框架
https://github.com/real-jacket/gulu
Last synced: about 15 hours ago
JSON representation
一个用vue制作的UI框架
- Host: GitHub
- URL: https://github.com/real-jacket/gulu
- Owner: real-jacket
- License: mit
- Created: 2018-09-15T06:44:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-25T08:49:18.000Z (over 6 years ago)
- Last Synced: 2025-01-10T13:06:21.224Z (15 days ago)
- Language: Vue
- Homepage: https://real-jacket.github.io/gulu
- Size: 450 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gulu 一个Vue UI框架
[![Build Status](https://travis-ci.org/real-jacket/gulu.svg?branch=master)](https://travis-ci.org/real-jacket/gulu)
## 介绍
这是我学习 Vue 过程中做的的一个 UI 框架。
##开始使用
1. 添加css
使用本框架前,请在 CSS 中开启 border-box
```
*,*::before,*::after{box-sizeing:border-box}
```
IE 8 及以上浏览器均支持此样式
你还需要设置默认颜色等变量(后续将改为 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 以上浏览器均支持此样式2. 安装gulu
```
npm i --save gulu-k
```
3. 引入 gulu
```
import {Button,ButtonGroup,Icon} from 'gulu-k'
import 'gulu-k/dist/index.css'
export default {
name: 'app',
components: {
'g-button':Button,
'g-icon':Icon
}
}
```
4. 引入 svg symbols
在页面中应引入 icon-font
```
```
## 文档## 提问
## 变更记录
## 联系方式
## 贡献代码