Migrated repository
Go to file
baiyaaaaa a759aaf500 Merge pull request #440 from YikaJ/master
fix autocomplete lose vnode.context.popperElm
2016-10-16 16:54:40 +08:00
.github add FAQ 2016-10-13 11:33:39 +08:00
build fix build commonjs config 2016-10-14 08:02:18 +08:00
examples fix input line-height (#431) 2016-10-14 23:47:26 +08:00
packages fix autocomplete lose vnode.context.popperElm 2016-10-16 15:44:21 +08:00
src Merge pull request #402 from QingWei-Li/fix/clickoutside 2016-10-14 23:14:32 +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 add lock modifier on loading 2016-10-13 20:06:01 +08:00
components.json Dropdown Reconstruction 2016-10-07 23:39:40 +08:00
FAQ.md update FAQ 2016-10-16 08:49:26 +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 remove lerna bootstrap 2016-10-16 08:49:26 +08:00
package.json remove lerna bootstrap 2016-10-16 08:49:26 +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