0.0.7 • Published 4 years ago

gulu-vue v0.0.7

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

gulu-vue - 基于Vue二次封装的ui框架

Build Status GitHub package.json version GitHub

介绍

学习Vue过程中封装的一个UI框架。

开始使用

  1. 添加CSS样式

    • 使用本框架需将CSS样式box-sizing属性设置为border-box
    * {
      box-sizing: border-box;
    }
    *::before {
      box-sizing: border-box;
    }
    *::after {
      box-sizing: border-box;
    }

    IE8及以上浏览器支持此样式

  2. 安装gulu-vue

    npm install --save gulu-vue
  3. 引入gulu-vue

    import { Button, ButtonGroup ,Icon } from 'gulu-vue'
    import 'gulu-vue/dist/index.css'
    
    export default {
      components: {
        'g-button': Button,
        'g-button-group': ButtonGroup,
        'g-icon': Icon
      }
    }

文档

提问

变更记录

联系方式

贡献代码

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago