Migrated repository
Go to file
baiyaaaaa 3f39e02e4a Merge pull request #158 from QingWei-Li/fix/datepicker
DatePicker: fix initial value is string, #157
2016-09-27 11:27:05 +08:00
.github Add links (#100) 2016-09-21 11:27:43 +08:00
build Refactor build scripts, fix #148 2016-09-27 11:15:55 +08:00
examples Merge pull request #158 from QingWei-Li/fix/datepicker 2016-09-27 11:27:05 +08:00
packages DatePicker: fix initial value is string, #157 2016-09-27 11:12:11 +08:00
src utils: import popper fail in vue-popper file, fixed #143 2016-09-24 16:05:20 +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 Update development page 2016-09-19 16:22:24 +08:00
.travis.yml update progress 2016-09-07 18:06:47 +08:00
CHANGELOG.md DatePicker: fix initial value is string, #157 2016-09-27 11:12: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
LICENSE add LICENSE 2016-09-07 15:27:15 +08:00
Makefile misc update 2016-09-22 13:54:20 +08:00
package.json Refactor build scripts, fix #148 2016-09-27 11:15:55 +08:00
README.md text unification 2016-09-24 20:26:03 +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