ui-land
v0.1.2
Published
## Instalation
Readme
UI Land
Instalation
yarn add ui-landUsage
The ui-landsupports 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 installCompiles and hot-reloads for development
yarn run serveCompiles and minifies for production
yarn run buildRun your tests
yarn run testLints and fixes files
yarn run lint