UNPKG

16.9 kBMarkdownView Raw
1<p align="center">
2 <img src="https://cdn.rawgit.com/ElemeFE/element/dev/element_logo.svg">
3</p>
4
5<p align="center">
6 <a href="https://travis-ci.org/ElemeFE/element">
7 <img src="https://travis-ci.org/ElemeFE/element.svg?branch=master">
8 </a>
9 <a href="https://coveralls.io/github/ElemeFE/element?branch=master">
10 <img src="https://coveralls.io/repos/github/ElemeFE/element/badge.svg?branch=master">
11 </a>
12 <a href="https://cdnjs.com/libraries/element-ui">
13 <img src="https://img.shields.io/cdnjs/v/element-ui.svg">
14 </a>
15 <a href="https://www.npmjs.org/package/element-ui">
16 <img src="https://img.shields.io/npm/v/element-ui.svg">
17 </a>
18 <a href="https://npmcharts.com/compare/element-ui?minimal=true">
19 <img src="http://img.shields.io/npm/dm/element-ui.svg">
20 </a>
21 <br>
22 <a href="http://img.badgesize.io/https://unpkg.com/element-ui/lib/index.js?compression=gzip&label=gzip%20size:%20JS">
23 <img src="http://img.badgesize.io/https://unpkg.com/element-ui/lib/index.js?compression=gzip&label=gzip%20size:%20JS">
24 </a>
25 <a href="http://img.badgesize.io/https://unpkg.com/element-ui/lib/theme-chalk/index.css?compression=gzip&label=gzip%20size:%20CSS">
26 <img src="http://img.badgesize.io/https://unpkg.com/element-ui/lib/theme-chalk/index.css?compression=gzip&label=gzip%20size:%20CSS">
27 </a>
28 <a href="#backers">
29 <img src="https://opencollective.com/element/backers/badge.svg">
30 </a>
31 <a href="#sponsors">
32 <img src="https://opencollective.com/element/sponsors/badge.svg">
33 </a>
34 <a href="LICENSE">
35 <img src="https://img.shields.io/badge/License-MIT-yellow.svg">
36 </a>
37</p>
38
39<p align="center">
40 <b>Special thanks to the generous sponsorship by:</b>
41</p>
42<table>
43 <tbody>
44 <tr>
45 <td align="center" valign="middle">
46 <a href="https://tipe.io/?ref=element" target="_blank">
47 <img width="150px" src="https://user-images.githubusercontent.com/1016365/34124854-48fafa06-e3e9-11e7-8c04-251055feebee.png">
48 </a>
49 </td>
50 <td align="center" valign="middle">
51 <a href="https://www.duohui.cn/?utm_source=element&utm_medium=web&utm_campaign=element-index" target="_blank">
52 <img width="150px" src="https://user-images.githubusercontent.com/10095631/35603534-bb24470c-0678-11e8-8bcc-17ceaef8cbef.png">
53 </a>
54 </td>
55 <td align="center" valign="middle">
56 <a href="https://bitsrc.io/" target="_blank">
57 <img width="150px" src="https://user-images.githubusercontent.com/10095631/41342907-e44e7196-6f2f-11e8-92f2-47702dc8f059.png">
58 </a>
59 </td>
60 </tr>
61 </tbody>
62</table>
63
64> A Vue.js 2.0 UI Toolkit for Web.
65
66## Links
67- Homepage and documentation
68 - [International users](http://element.eleme.io/#/en-US)
69 - [Chinese users](http://element-cn.eleme.io/#/zh-CN)
70 - [Spanish users](http://element.eleme.io/#/es)
71 - [French users](http://element.eleme.io/#/fr-FR)
72- [awesome-element](https://github.com/ElementUI/awesome-element)
73- [FAQ](./FAQ.md)
74- [Customize theme](http://element.eleme.io/#/en-US/component/custom-theme)
75- [Preview and generate theme online](https://elementui.github.io/theme-chalk-preview)
76- [Element for React](https://github.com/elemefe/element-react)
77- [Element for Angular](https://github.com/ElemeFE/element-angular)
78- [Atom helper](https://github.com/ElemeFE/element-helper)
79- [Visual Studio Code helper](https://github.com/ElemeFE/vscode-element-helper)
80- Starter kit
81 - [element-starter](https://github.com/ElementUI/element-starter)
82 - [element-in-laravel-starter](https://github.com/ElementUI/element-in-laravel-starter)
83- [Design resources](https://github.com/ElementUI/Resources)
84- Gitter
85 - [International users](https://gitter.im/element-en/Lobby)
86 - [Chinese users](https://gitter.im/ElemeFE/element)
87
88## Install
89```shell
90npm install element-ui -S
91```
92
93## Quick Start
94``` javascript
95import Vue from 'vue'
96import Element from 'element-ui'
97
98Vue.use(Element)
99
100// or
101import {
102 Select,
103 Button
104 // ...
105} from 'element-ui'
106
107Vue.component(Select.name, Select)
108Vue.component(Button.name, Button)
109```
110For more information, please refer to [Quick Start](http://element.eleme.io/#/en-US/component/quickstart) in our documentation.
111
112## Browser Support
113Modern browsers and Internet Explorer 10+.
114
115## Development
116Skip this part if you just want to use Element.
117
118For those who are interested in contributing to Element, please refer to our contributing guide ([中文](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.zh-CN.md) | [English](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.en-US.md) | [Español](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.es.md) | [Français](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.fr-FR.md)) to see how to run this project.
119
120## Changelog
121Detailed changes for each release are documented in the [release notes](https://github.com/ElemeFE/element/releases).
122
123## FAQ
124We 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.
125
126## Contribution
127Please make sure to read the contributing guide ([中文](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.zh-CN.md) | [English](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.en-US.md) | [Español](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.es.md) | [Français](https://github.com/ElemeFE/element/blob/master/.github/CONTRIBUTING.fr-FR.md)) before making a pull request.
128
129[![Let's fund issues in this repository](https://issuehunt.io/static/embed/issuehunt-button-v1.svg)](https://issuehunt.io/repos/67274736)
130
131## Special Thanks
132English documentation is brought to you by SwiftGG Translation Team:
133- [raychenfj](https://github.com/raychenfj)
134- [kevin](http://thekevin.cn/)
135- [曾小涛](https://github.com/zengxiaotao)
136- [湾仔王二](https://github.com/wanzaiwanger)
137- [BlooDLine](http://www.ibloodline.com/)
138- [陈铭嘉](https://chenmingjia.github.io/)
139- [千叶知风](http://mpc6.com/)
140- [梁杰](http://numbbbbb.com)
141- [Changing](https://github.com/sunzhuo11)
142- [mmoaay](https://github.com/mmoaay)
143
144Spanish documentation is made possible by these community developers:
145- [adavie1](https://github.com/adavie1)
146- [carmencitaqiu](https://github.com/carmencitaqiu)
147- [coderdiaz](https://github.com/coderdiaz)
148- [fedegar33](https://github.com/fedegar33)
149- [Gonzalo2310](https://github.com/Gonzalo2310)
150- [lesterbx](https://github.com/lesterbx)
151- [ProgramerGuy](https://github.com/ProgramerGuy)
152- [SantiagoGdaR](https://github.com/SantiagoGdaR)
153- [sigfriedCub1990](https://github.com/sigfriedCub1990)
154- [thechosenjuan](https://github.com/thechosenjuan)
155
156French documentation is made possible by these community developers:
157- [smalesys](https://github.com/smalesys)
158- [blombard](https://github.com/blombard)
159
160## Donation
161If you find Element useful, you can buy us a cup of coffee
162
163<img width="650" src="https://user-images.githubusercontent.com/14025786/44833997-5d7c4d80-ac62-11e8-8445-1dffec0eb13c.png" alt="donation">
164
165## Backers
166
167Support us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/element#backer)]
168
169<a href="https://opencollective.com/element/backer/0/website" target="_blank"><img src="https://opencollective.com/element/backer/0/avatar.svg"></a>
170<a href="https://opencollective.com/element/backer/1/website" target="_blank"><img src="https://opencollective.com/element/backer/1/avatar.svg"></a>
171<a href="https://opencollective.com/element/backer/2/website" target="_blank"><img src="https://opencollective.com/element/backer/2/avatar.svg"></a>
172<a href="https://opencollective.com/element/backer/3/website" target="_blank"><img src="https://opencollective.com/element/backer/3/avatar.svg"></a>
173<a href="https://opencollective.com/element/backer/4/website" target="_blank"><img src="https://opencollective.com/element/backer/4/avatar.svg"></a>
174<a href="https://opencollective.com/element/backer/5/website" target="_blank"><img src="https://opencollective.com/element/backer/5/avatar.svg"></a>
175<a href="https://opencollective.com/element/backer/6/website" target="_blank"><img src="https://opencollective.com/element/backer/6/avatar.svg"></a>
176<a href="https://opencollective.com/element/backer/7/website" target="_blank"><img src="https://opencollective.com/element/backer/7/avatar.svg"></a>
177<a href="https://opencollective.com/element/backer/8/website" target="_blank"><img src="https://opencollective.com/element/backer/8/avatar.svg"></a>
178<a href="https://opencollective.com/element/backer/9/website" target="_blank"><img src="https://opencollective.com/element/backer/9/avatar.svg"></a>
179<a href="https://opencollective.com/element/backer/10/website" target="_blank"><img src="https://opencollective.com/element/backer/10/avatar.svg"></a>
180<a href="https://opencollective.com/element/backer/11/website" target="_blank"><img src="https://opencollective.com/element/backer/11/avatar.svg"></a>
181<a href="https://opencollective.com/element/backer/12/website" target="_blank"><img src="https://opencollective.com/element/backer/12/avatar.svg"></a>
182<a href="https://opencollective.com/element/backer/13/website" target="_blank"><img src="https://opencollective.com/element/backer/13/avatar.svg"></a>
183<a href="https://opencollective.com/element/backer/14/website" target="_blank"><img src="https://opencollective.com/element/backer/14/avatar.svg"></a>
184<a href="https://opencollective.com/element/backer/15/website" target="_blank"><img src="https://opencollective.com/element/backer/15/avatar.svg"></a>
185<a href="https://opencollective.com/element/backer/16/website" target="_blank"><img src="https://opencollective.com/element/backer/16/avatar.svg"></a>
186<a href="https://opencollective.com/element/backer/17/website" target="_blank"><img src="https://opencollective.com/element/backer/17/avatar.svg"></a>
187<a href="https://opencollective.com/element/backer/18/website" target="_blank"><img src="https://opencollective.com/element/backer/18/avatar.svg"></a>
188<a href="https://opencollective.com/element/backer/19/website" target="_blank"><img src="https://opencollective.com/element/backer/19/avatar.svg"></a>
189<a href="https://opencollective.com/element/backer/20/website" target="_blank"><img src="https://opencollective.com/element/backer/20/avatar.svg"></a>
190<a href="https://opencollective.com/element/backer/21/website" target="_blank"><img src="https://opencollective.com/element/backer/21/avatar.svg"></a>
191<a href="https://opencollective.com/element/backer/22/website" target="_blank"><img src="https://opencollective.com/element/backer/22/avatar.svg"></a>
192<a href="https://opencollective.com/element/backer/23/website" target="_blank"><img src="https://opencollective.com/element/backer/23/avatar.svg"></a>
193<a href="https://opencollective.com/element/backer/24/website" target="_blank"><img src="https://opencollective.com/element/backer/24/avatar.svg"></a>
194<a href="https://opencollective.com/element/backer/25/website" target="_blank"><img src="https://opencollective.com/element/backer/25/avatar.svg"></a>
195<a href="https://opencollective.com/element/backer/26/website" target="_blank"><img src="https://opencollective.com/element/backer/26/avatar.svg"></a>
196<a href="https://opencollective.com/element/backer/27/website" target="_blank"><img src="https://opencollective.com/element/backer/27/avatar.svg"></a>
197<a href="https://opencollective.com/element/backer/28/website" target="_blank"><img src="https://opencollective.com/element/backer/28/avatar.svg"></a>
198<a href="https://opencollective.com/element/backer/29/website" target="_blank"><img src="https://opencollective.com/element/backer/29/avatar.svg"></a>
199
200
201## Sponsors
202
203Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/element#sponsor)]
204
205<a href="https://opencollective.com/element/sponsor/0/website" target="_blank"><img src="https://opencollective.com/element/sponsor/0/avatar.svg"></a>
206<a href="https://opencollective.com/element/sponsor/1/website" target="_blank"><img src="https://opencollective.com/element/sponsor/1/avatar.svg"></a>
207<a href="https://opencollective.com/element/sponsor/2/website" target="_blank"><img src="https://opencollective.com/element/sponsor/2/avatar.svg"></a>
208<a href="https://opencollective.com/element/sponsor/3/website" target="_blank"><img src="https://opencollective.com/element/sponsor/3/avatar.svg"></a>
209<a href="https://opencollective.com/element/sponsor/4/website" target="_blank"><img src="https://opencollective.com/element/sponsor/4/avatar.svg"></a>
210<a href="https://opencollective.com/element/sponsor/5/website" target="_blank"><img src="https://opencollective.com/element/sponsor/5/avatar.svg"></a>
211<a href="https://opencollective.com/element/sponsor/6/website" target="_blank"><img src="https://opencollective.com/element/sponsor/6/avatar.svg"></a>
212<a href="https://opencollective.com/element/sponsor/7/website" target="_blank"><img src="https://opencollective.com/element/sponsor/7/avatar.svg"></a>
213<a href="https://opencollective.com/element/sponsor/8/website" target="_blank"><img src="https://opencollective.com/element/sponsor/8/avatar.svg"></a>
214<a href="https://opencollective.com/element/sponsor/9/website" target="_blank"><img src="https://opencollective.com/element/sponsor/9/avatar.svg"></a>
215<a href="https://opencollective.com/element/sponsor/10/website" target="_blank"><img src="https://opencollective.com/element/sponsor/10/avatar.svg"></a>
216<a href="https://opencollective.com/element/sponsor/11/website" target="_blank"><img src="https://opencollective.com/element/sponsor/11/avatar.svg"></a>
217<a href="https://opencollective.com/element/sponsor/12/website" target="_blank"><img src="https://opencollective.com/element/sponsor/12/avatar.svg"></a>
218<a href="https://opencollective.com/element/sponsor/13/website" target="_blank"><img src="https://opencollective.com/element/sponsor/13/avatar.svg"></a>
219<a href="https://opencollective.com/element/sponsor/14/website" target="_blank"><img src="https://opencollective.com/element/sponsor/14/avatar.svg"></a>
220<a href="https://opencollective.com/element/sponsor/15/website" target="_blank"><img src="https://opencollective.com/element/sponsor/15/avatar.svg"></a>
221<a href="https://opencollective.com/element/sponsor/16/website" target="_blank"><img src="https://opencollective.com/element/sponsor/16/avatar.svg"></a>
222<a href="https://opencollective.com/element/sponsor/17/website" target="_blank"><img src="https://opencollective.com/element/sponsor/17/avatar.svg"></a>
223<a href="https://opencollective.com/element/sponsor/18/website" target="_blank"><img src="https://opencollective.com/element/sponsor/18/avatar.svg"></a>
224<a href="https://opencollective.com/element/sponsor/19/website" target="_blank"><img src="https://opencollective.com/element/sponsor/19/avatar.svg"></a>
225<a href="https://opencollective.com/element/sponsor/20/website" target="_blank"><img src="https://opencollective.com/element/sponsor/20/avatar.svg"></a>
226<a href="https://opencollective.com/element/sponsor/21/website" target="_blank"><img src="https://opencollective.com/element/sponsor/21/avatar.svg"></a>
227<a href="https://opencollective.com/element/sponsor/22/website" target="_blank"><img src="https://opencollective.com/element/sponsor/22/avatar.svg"></a>
228<a href="https://opencollective.com/element/sponsor/23/website" target="_blank"><img src="https://opencollective.com/element/sponsor/23/avatar.svg"></a>
229<a href="https://opencollective.com/element/sponsor/24/website" target="_blank"><img src="https://opencollective.com/element/sponsor/24/avatar.svg"></a>
230<a href="https://opencollective.com/element/sponsor/25/website" target="_blank"><img src="https://opencollective.com/element/sponsor/25/avatar.svg"></a>
231<a href="https://opencollective.com/element/sponsor/26/website" target="_blank"><img src="https://opencollective.com/element/sponsor/26/avatar.svg"></a>
232<a href="https://opencollective.com/element/sponsor/27/website" target="_blank"><img src="https://opencollective.com/element/sponsor/27/avatar.svg"></a>
233<a href="https://opencollective.com/element/sponsor/28/website" target="_blank"><img src="https://opencollective.com/element/sponsor/28/avatar.svg"></a>
234<a href="https://opencollective.com/element/sponsor/29/website" target="_blank"><img src="https://opencollective.com/element/sponsor/29/avatar.svg"></a>
235
236## Join Discussion Group
237
238Scan the QR code using [Dingtalk App](https://www.dingtalk.com/) to join in discussion group :
239
240<img alt="Join Discusion Group" src="https://user-images.githubusercontent.com/17680888/66537329-9a4b9100-eb52-11e9-9d99-65469cfdae58.jpeg" width="300">
241
242
243## LICENSE
244[MIT](LICENSE)