Vue.js 2.0 UI Toolkit for Web
How to Install
1 | npm install element-ui -S |
How to use Vue.js Toolkit
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 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) |
Starter kit for Element UI Vue.js Toolkit
First step you must download this files.
- Enter your local directory, and install dependencies
1 | yarn |
- Development
1 2 | # serve with hot reload at localhost:8010 npm run dev |
- How to Build
1 2 | ## build for production with minification buil npm run build |