A Component Library for Vue.js.
npm install element-ui-zq
Special thanks to the generous sponsorship by:
|
|
|
shell
npm install element-ui -S
`
Quick Start
` javascript
import Vue from 'vue'
import Element from 'element-ui'
Vue.use(Element)
// or
import {
Select,
Button
// ...
} from 'element-ui'
Vue.component(Select.name, Select)
Vue.component(Button.name, Button)
``