0.0.2 • Published 5 years ago

winder-test v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

winder - this is a awesome UI framwork using vue

Build Status

  • author: Shaolin Wu

Introduction

  1. 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.

  1. install winder-test
npm i --save winder-test
  1. import winder-test
import { Button } from "winder-test";

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

Ecosystem

Documentation

Questions

Issues

Changelog