eview
v0.0.2
Published
A high quality UI components Library with Vue.js by matisha001
Downloads
2
Maintainers
Readme
eview
Build Setup
# install dependencies
npm i eview --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 eview from 'eview'
Vue.use(eview)
# needs imports way1
import Vue from 'vue'
import { etable, eform } from 'eview'
Vue.use(etable);
# needs imports way2
import Vue from 'vue'
import { etable, eform } from 'eview'
Vue.component('etable', etable);