Migrated repository
Go to file
2016-09-07 13:00:29 +08:00
.github add doc 2016-09-07 13:00:29 +08:00
bin Use cooking@1.0.0-rc.2 2016-09-06 11:51:08 +08:00
examples minor doc updates/guarantee _self returns the right vm 2016-09-06 19:33:37 +08:00
packages minor doc updates/guarantee _self returns the right vm 2016-09-06 19:33:37 +08:00
scripts Use cooking@1.0.0-rc.2 2016-09-06 11:51:08 +08:00
src Popover: fix visible 2016-09-02 19:32:17 +08:00
.babelrc Use cooking@1.0.0-rc.2 2016-09-06 11:51:08 +08:00
.eslintignore Initial commit 2016-07-27 14:15:02 +08:00
.eslintrc update pagination 2016-07-29 17:46:16 +08:00
.gitignore Initial commit 2016-07-27 14:15:02 +08:00
.travis.yml update readme 2016-09-03 20:30:59 +08:00
CHANGELOG.md update Message icon style 2016-09-05 20:11:11 +08:00
components.json menu item group 2016-08-23 11:32:37 +08:00
lerna.json Initial commit 2016-07-27 14:15:02 +08:00
Makefile Use cooking@1.0.0-rc.2 2016-09-06 11:51:08 +08:00
package.json package: fix url 2016-09-07 11:46:31 +08:00
README.md add doc 2016-09-07 13:00:29 +08:00

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, Select)
Vue.component(Button.name, Button)

(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, Select)
Vue.component(Button.name, Button)

babel-plugin-component

.babelrc

{
  "plugins": ["xxx", ["component", [
    {
      "libraryName": "element-ui",
      "styleLibraryName": "theme-default"
    }
  ]]]
}

development

# development => install packages -> build icon etc. -> run webpack
$ npm run dev

# Recommended use `npminstall` to install packages, it is so fast
$ npm i npminstall -g
$ npminstall

# build => build all component
$ npm run dist

Changelog

Details changes for each release are documented in the release notes.

Contribution

Please make sure to read the Contributing Guide before making a pull request.

LICENSE

MIT