0.1.2 • Published 5 years ago

ui-land v0.1.2

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

UI Land

Instalation

yarn add ui-land

Usage

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

Customize configuration

See Configuration Reference.