ui-land
v0.1.2
Published
## Instalation
Downloads
2
Readme
UI Land
Instalation
yarn add ui-land
Usage
The ui-land
supports both fully import or parcial import.
Fully Import
import Vue from 'vue'
import UILand from 'ui-land'
import 'ui-land/dist/ui-land.css'
Vue.use(UILand)
new Vue({
el: '#app',
render(h) {
YourCode...
}
})
Partial Import
import Vue from 'vue'
import { MButton } from 'ui-land'
import 'ui-land/dist/ui-land.css'
Vue.use(MButton)
new Vue({
el: '#app',
render(h) {
YourCode...
}
})
Project setup
yarn install
Compiles and hot-reloads for development
yarn run serve
Compiles and minifies for production
yarn run build
Run your tests
yarn run test
Lints and fixes files
yarn run lint