Migrated repository
Go to file
2016-10-13 10:44:35 +08:00
.github update ISSUE_TEMPLATE 2016-10-10 11:56:01 +08:00
build Add unittest 2016-10-11 19:00:37 +08:00
examples Merge branch 'master' into unittest 2016-10-13 10:44:35 +08:00
packages fix tree-node checkbox bug 2016-10-13 00:24:10 +08:00
src fix some styles 2016-10-12 22:00:43 +08:00
test/unit Add unittest 2016-10-11 19:00:37 +08:00
.babelrc Use cooking@1.0.0-rc.2 2016-09-06 11:51:08 +08:00
.eslintignore Refactor build scripts, fix #148 2016-09-27 11:15:55 +08:00
.eslintrc update pagination 2016-07-29 17:46:16 +08:00
.gitignore Add unittest 2016-10-11 19:00:37 +08:00
.travis.yml update progress 2016-09-07 18:06:47 +08:00
CHANGELOG.md fix tree-node checkbox bug 2016-10-13 00:24:10 +08:00
components.json Dropdown Reconstruction 2016-10-07 23:39:40 +08:00
lerna.json Initial commit 2016-07-27 14:15:02 +08:00
LICENSE add LICENSE 2016-09-07 15:27:15 +08:00
Makefile misc update 2016-09-22 13:54:20 +08:00
package.json Merge branch 'master' into unittest 2016-10-13 10:44:35 +08:00
README.md update element-in-laravel-starter 2016-09-28 14:15:43 +08:00

Element

Build Status npm package NPM downloads JS gzip size CSS gzip size Join the chat at https://gitter.im/ElemeFE/element

Desktop UI elements for Vue.js 2.0.

Install

npm install element-ui@next -S

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 'element-ui/lib/theme-default/select.css'
import Button from 'element-ui/lib/button'
import '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"
    }
  ]]]
}

Browser Support

Modern browsers and Internet Explorer 9+.

Development

Recommend: node >= 4 npm >= 3

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

# build => build all component
$ npm run dist

Changelog

Detailed 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