0.0.1 • Published 6 years ago

@matisha001/hview v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

hview

npm npm hview

Build Setup

# install dependencies
npm i hview --save

# serve with hot reload at localhost:8080
npm run dev / npm start

# build for production
npm run dist:dev

# build for production with minification
npm run dist:prod

Quick Start

# global imports
import Vue from 'vue'
import hview from 'hview'
Vue.use(hview)

# needs imports way1
import Vue from 'vue'
import { htable, hform } from 'hview'
Vue.use(htable);

# needs imports way2
import Vue from 'vue'
import { htable, hform } from 'hview'
Vue.component('htable', htable);