2016-09-09 21:40:35 +08:00
# Element
[![Build Status ](https://travis-ci.org/ElemeFE/element.svg?branch=master )](https://travis-ci.org/ElemeFE/element)
2016-10-27 23:25:03 +08:00
[![Coverage Status ](https://coveralls.io/repos/github/ElemeFE/element/badge.svg?branch=master )](https://coveralls.io/github/ElemeFE/element?branch=master)
2016-10-31 15:36:41 +08:00
[![CDNJS ](https://img.shields.io/cdnjs/v/element-ui.svg )](https://cdnjs.com/libraries/element-ui)
2016-09-09 21:40:35 +08:00
[![npm package ](https://img.shields.io/npm/v/element-ui.svg )](https://www.npmjs.org/package/element-ui)
[![NPM downloads ](http://img.shields.io/npm/dm/element-ui.svg )](https://npmjs.org/package/element-ui)
2016-09-23 08:50:27 +08:00
![JS gzip size ](http://img.badgesize.io/https://unpkg.com/element-ui@next/lib/index.js?compression=gzip&label=gzip%20size:%20JS )
![CSS gzip size ](http://img.badgesize.io/https://unpkg.com/element-ui@next/lib/theme-default/index.css?compression=gzip&label=gzip%20size:%20CSS )
2016-09-09 21:32:31 +08:00
[![Join the chat at https://gitter.im/ElemeFE/element ](https://badges.gitter.im/ElemeFE/element.svg )](https://gitter.im/ElemeFE/element?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=badge)
2016-09-09 21:40:35 +08:00
2016-09-05 12:33:21 +08:00
> Desktop UI elements for Vue.js 2.0.
2016-07-27 14:15:02 +08:00
2016-09-21 18:45:29 +08:00
## Links
- [Home Page ](http://element.eleme.io/ )
- [Docs ](http://element.eleme.io/#/component )
2016-10-28 21:35:05 +08:00
- [FAQ 中文 ](./FAQ.md )
2016-11-02 16:09:43 +08:00
- [自定义主题 ](./custom-theme.md )
2016-10-31 12:25:19 +08:00
- [i18n ](./i18n.md )
- Starter Kit
- [element-starter ](https://github.com/ElementUI/element-starter )
- [element-cooking-starter ](https://github.com/ElementUI/element-cooking-starter )
- [element-in-laravel-starter ](https://github.com/ElementUI/element-in-laravel-starter )
- [Design resources ](https://github.com/ElementUI/Resources )
- Boilerplate for bug reports
- [CodePen ](https://codepen.io/anon/pen/ozYpNA )
- [JSFiddle ](https://jsfiddle.net/gmve9d3p/ )
- [Mint UI ](https://github.com/ElemeFE/mint-ui ) - Mobile UI elements for Vue.js
2016-09-03 20:30:59 +08:00
2016-09-21 18:45:29 +08:00
## Install
2016-07-27 14:15:02 +08:00
```shell
2016-09-21 11:27:43 +08:00
npm install element-ui@next -S
2016-07-27 14:15:02 +08:00
```
## Quick Start
use [babel-plugin-component ](https://github.com/QingWei-Li/babel-plugin-component )
``` javascript
import Vue from 'vue'
import Element from 'element-ui'
Vue.use(Element)
// or
import {
Select,
Button
// ...
} from 'element-ui'
2016-09-06 12:01:53 +08:00
Vue.component(Select.name, Select)
Vue.component(Button.name, Button)
2016-07-27 14:15:02 +08:00
```
(roughly) to
``` javascript
import Vue from 'vue'
import Element from 'element-ui'
2016-09-07 15:11:50 +08:00
import 'element-ui/lib/theme-default/index.css'
2016-07-27 14:15:02 +08:00
Vue.use(Element)
// or
2016-09-07 15:11:50 +08:00
import Select from 'element-ui/lib/select'
2016-09-12 13:53:45 +08:00
import 'element-ui/lib/theme-default/select.css'
2016-09-07 15:11:50 +08:00
import Button from 'element-ui/lib/button'
2016-09-12 13:53:45 +08:00
import 'element-ui/lib/theme-default/button.css'
2016-07-27 14:15:02 +08:00
2016-09-06 12:01:53 +08:00
Vue.component(Select.name, Select)
Vue.component(Button.name, Button)
2016-07-27 14:15:02 +08:00
```
## babel-plugin-component
.babelrc
```json
{
2016-10-28 21:35:05 +08:00
"plugins": [["component", [
2016-07-27 14:15:02 +08:00
{
"libraryName": "element-ui",
"styleLibraryName": "theme-default"
}
]]]
}
```
2016-09-24 18:09:09 +08:00
## Browser Support
Modern browsers and Internet Explorer 9+.
2016-09-07 15:38:19 +08:00
## Development
2016-10-18 17:05:39 +08:00
Skip this part if you just want to use Element.
2016-09-07 15:38:19 +08:00
2016-10-18 17:05:39 +08:00
For those who are interested in contributing to Element, please refer to our [contributing guide ](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.md ) to see how to run this project.
2016-09-03 20:30:59 +08:00
2016-09-01 14:17:01 +08:00
## Changelog
2016-09-24 20:26:03 +08:00
Detailed changes for each release are documented in the [release notes ](https://github.com/ElemeFE/element/releases ).
2016-09-01 14:17:01 +08:00
2016-10-18 17:05:39 +08:00
## FAQ
We have collected some [frequently asked questions ](https://github.com/ElemeFE/element/blob/master/FAQ.md ). Before reporting an issue, please search if the FAQ has the answer to your problem.
2016-09-07 12:40:16 +08:00
## Contribution
2016-09-07 15:11:50 +08:00
Please make sure to read the [Contributing Guide ](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.md ) before making a pull request.
2016-09-07 12:40:16 +08:00
2016-07-27 14:15:02 +08:00
## LICENSE
MIT