Desktop UI elements for Vue.js 2.0.
npm install Xdc-ui@next -S
import Vue from 'vue'
import Element from 'xdc-ui'
Vue.use(Element)
// or
import {
Select,
Button
// ...
} from 'element-ui'
Vue.component(Select.name, Select)
Vue.component(Button.name, Button)
(roughly) to
import Vue from 'vue'
import Element from 'xdc-ui'
import 'xdc-ui/lib/theme-default/index.css'
Vue.use(Element)
// or
import Select from 'xdc-ui/lib/select'
import 'xdc-ui/lib/theme-default/select.css'
import Button from 'xdc-ui/lib/button'
import 'xdc-ui/lib/theme-default/button.css'
Vue.component(Select.name, Select)
Vue.component(Button.name, Button)
.babelrc
{
"plugins": ["xxx", ["component", [
{
"libraryName": "xdc-ui",
"styleLibraryName": "theme-default"
}
]]]
}
Modern browsers and Internet Explorer 9+.
Recommend: node >= 4 npm >= 3
# development => install packages -> build icon etc. -> run webpack
$ npm run dev
# build => build all component
$ npm run dist
MIT