0.0.4 • Published 4 years ago

sovt v0.0.4

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

sovt是一个基于Vue的UI框架

Build Status

Introduction

get start

1. 使用该框架请设置CSS

*,*::before,*::after{
box-sizing:border-box
}

IE 8及以上支持此样式

同时需要在index.html中引入默认颜色(后续会改为scss变量)

html{
   --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. 安装sovt

  npm i -S sovt

3. 引入

import {Button,ButtonGroup,Icon} from 'sovt'
import 'sovt/dist/index.css'
export default {
  name: 'App',
  components: {
    'g-button':Button
  }
}

Documentation

Questions

Issues

Changelog

Stay In Touch

License

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago