0.0.5 • Published 5 years ago

tk-wheel v0.0.5

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

tk-wheel

Build Status

this is a awesome UI framwork using vue

  • author: Dong Zuo

Introduction

CSS style

Before using this framework, you should use 'border-box'

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

This feature is supported by IE8 and above.


You also need to set variables such as global colors (subsequently changed to sass variable)

:root {
  --button-height: 32px;
  --font-size: 14px;
  --button-bg: white;
  --button-active-bg: #eee;
  --border-radius: 4px;
  --color: #333;
  --border-color: #999999;
  --border-color-hover: #666;
}

This feature is supported by IE15 and above.

Install

  1. install tk-wheel
npm i --save tk-wheel
  1. import tk-wheel
import { Button } from "tk-wheel";

export default {
  name: "app",
  components: {
    "tk-button": Button
  }
};

Ecosystem

Documentation

Questions

Issues

Changelog

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago