Element
Desktop UI elements for Vue.js 2.0.
Docs
Coming soon
Demo
Demo will come with the documentation. Here is a preview of what a page based on Element looks like:
Usages
npm install element-ui@next
Quick Start
use babel-plugin-component
import Vue from 'vue'
import Element from 'element-ui'
Vue.use(Element)
// or
import {
Select,
Button
// ...
} from 'element-ui'
Vue.component(Select.name, ElSelect)
Vue.component(Button.name, ElButton)Copy the code
(roughly) to
import Vue from 'vue'
import Element from 'element-ui'
import 'element-ui/lib/theme-default/index.css';
Vue.use(Element)
// or
import Select from 'element-ui/lib/select';
import Select from 'element-ui/lib/theme-default/select.css';
import Button from 'element-ui/lib/button';
import Button from 'element-ui/lib/theme-default/button.css';
Vue.component(Select.name, ElSelect)
Vue.component(Button.name, ElButton)Copy the code
babel-plugin-component
.babelrc
{
"plugins": ["xxx", ["component", [
{
"libraryName": "element-ui",
"styleLibraryName": "theme-default"
}
]]]
}Copy the code
development
Building Tool Installation
Element UI is built with cooking. So before running it you’ll need to install cooking globally.
$ npm install cooking -g
Commands
$ make install --- install dependencies
$ make dev --- develop mode
$ make dist --- compile the project
$ make dist-all --- compile each component individuallyCopy the code
Changelog
Details changes for each release are documented in the release notes.
LICENSE
MIT