1.0.1 • Published 4 years ago

simple-style-ui v1.0.1

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

simple-style-ui

simple-style-ui UI library for Web APP, built with Vue.js.

Install

$ yarn add simple-style-ui

or

$ npm install simple-style-ui --save

Import

Then you need to import its components and plugins in main.js.

// main.js
// Import the library
import SUI from 'simple-style-ui'
import 'simple-style-ui/dist/simple-style-ui.css'

// Use some plugins
Vue.use(SUI)

Usage

Now, let's place some components in your Web APP!

<s-button type="default">Default</s-button>
<s-button type="primary">primary</s-button>
<s-button type="warning">Warning</s-button>
<s-button type="danger">Danger</s-button>
<s-button type="info">Info</s-button>
<s-button type="success">Success</s-button>

Note

This UI library will reset some styles as followed. I strongly recommend you to add these styles to all of your projects for saving time to find CSS bugs :)

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
1.0.1

4 years ago

1.0.0

4 years ago

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