27f0d894
梁灏
update readme
|
1
2
|
<p align="center">
<a href="https://www.iviewui.com">
|
1c26046d
梁灏
update readme
|
3
|
<img width="200" src="https://file.iviewui.com/logo.svg">
|
27f0d894
梁灏
update readme
|
4
5
|
</a>
</p>
|
c1cfacb2
梁灏
update readme
|
6
|
|
1d5e9fc3
Sergio Crisostomo
README updates
|
7
8
|
# iView
[](https://travis-ci.org/iview/iview)
|
25177f5a
Aresn
Update README.md
|
9
10
11
12
13
14
|
[](https://www.npmjs.org/package/iview)
[](https://npmjs.org/package/iview)
[](https://npmjs.org/package/iview)


[](https://gitter.im/iview/iview?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
ecd50b8f
The Gitter Badger
Add Gitter badge
|
15
|
|
692be62c
md678685
Fix some English ...
|
16
|
### A high quality UI Toolkit built on Vue.js.
|
c1cfacb2
梁灏
update readme
|
17
|
|
692be62c
md678685
Fix some English ...
|
18
|
> This branch is for Vue.js 2.x.
|
b13ae9c5
梁灏
update readme
|
19
|
>
|
692be62c
md678685
Fix some English ...
|
20
|
> The branch for Vue.js 1.x can be found [here](https://github.com/iview/iview/tree/master).
|
1cc06612
Rijn
updated README
|
21
|
|
c1cfacb2
梁灏
update readme
|
22
23
|
## Docs
|
5c2f982e
Aresn
update readme
|
24
|
### [English (2.0)](https://www.iviewui.com)
|
c4d36b0a
Aresn
update readme
|
25
|
### [中文文档 (2.0)](https://www.iviewui.com)
|
1d5e9fc3
Sergio Crisostomo
README updates
|
26
|
[中文文档 (1.0)](http://v1.iviewui.com)
|
c1cfacb2
梁灏
update readme
|
27
|
|
27f0d894
梁灏
update readme
|
28
29
|
## Overview
|
fded311f
梁灏
update readme
|
30
|
### [Component Overview](https://www.iviewui.com/overview)
|
27f0d894
梁灏
update readme
|
31
32
33
|
## Features
|
fded311f
梁灏
update readme
|
34
|
- Dozens of useful and beautiful components.
|
692be62c
md678685
Fix some English ...
|
35
|
- Friendly API. It's made for people with any skill level.
|
1d5e9fc3
Sergio Crisostomo
README updates
|
36
|
- Extensive documentation and demos.
|
68f50634
梁灏
update readme
|
37
|
- It is quite beautiful.
|
692be62c
md678685
Fix some English ...
|
38
|
- Supports both Vue.js 2 and Vue.js 1.
|
27f0d894
梁灏
update readme
|
39
|
|
d44e817e
梁灏
update Readme
|
40
41
42
43
44
45
46
47
48
|
## Who's using iView
- [TalkingData](http://www.talkingdata.com/)
- [Alibaba](http://www.alibaba.com/)
- [JD](http://www.jd.com/)
- [DiDi](http://www.didichuxing.com/)
> If your company or products use iView, welcome to click [here](https://github.com/iview/iview/issues/2143) to leave a message.
|
27f0d894
梁灏
update readme
|
49
50
|
## Install
|
692be62c
md678685
Fix some English ...
|
51
|
> Please install Webpack first!
|
27f0d894
梁灏
update readme
|
52
|
|
692be62c
md678685
Fix some English ...
|
53
|
We recommend you create your project through [iView Cli](https://github.com/iview/iview-cli) or [iview-project](https://github.com/iview/iview-project). You can also use [vue-cli](https://github.com/vuejs/vue-cli).
|
27f0d894
梁灏
update readme
|
54
55
56
|
### Install iView
|
692be62c
md678685
Fix some English ...
|
57
|
Using npm:
|
2218620b
Aresn
Update README.md
|
58
|
```
|
27f0d894
梁灏
update readme
|
59
|
npm install iview --save
|
2218620b
Aresn
Update README.md
|
60
|
```
|
692be62c
md678685
Fix some English ...
|
61
62
|
Using a script tag for global use:
|
1d5e9fc3
Sergio Crisostomo
README updates
|
63
|
|
d270488b
梁灏
update readme
|
64
|
```html
|
e48950bd
梁灏
update readme
|
65
|
<script type="text/javascript" src="iview.min.js"></script>
|
1d5e9fc3
Sergio Crisostomo
README updates
|
66
|
<link rel="stylesheet" href="dist/styles/iview.css">
|
27f0d894
梁灏
update readme
|
67
68
|
```
|
692be62c
md678685
Fix some English ...
|
69
|
You can find more info [on the website](https://www.iviewui.com/docs/guide/install-en).
|
1d5e9fc3
Sergio Crisostomo
README updates
|
70
|
|
27f0d894
梁灏
update readme
|
71
72
|
## Usage
|
8fc450f5
梁灏
update readme
|
73
|
```vue
|
27f0d894
梁灏
update readme
|
74
|
<template>
|
8fc450f5
梁灏
update readme
|
75
|
<Slider v-model="value" range />
|
27f0d894
梁灏
update readme
|
76
77
|
</template>
<script>
|
27f0d894
梁灏
update readme
|
78
|
export default {
|
e48950bd
梁灏
update readme
|
79
80
81
82
83
|
data () {
return {
value: [20, 50]
}
}
|
27f0d894
梁灏
update readme
|
84
85
86
|
}
</script>
```
|
1d5e9fc3
Sergio Crisostomo
README updates
|
87
88
89
|
Using css via `import`:
|
27f0d894
梁灏
update readme
|
90
91
92
93
|
```js
import 'iview/dist/styles/iview.css';
```
|
fded311f
梁灏
update readme
|
94
95
|
## Compatibility
|
692be62c
md678685
Fix some English ...
|
96
97
98
99
100
101
|
- Supports Vue.js 2.x
- Supports Vue.js 1.x - [visit 1.0 docs](http://v1.iviewui.com/)
- Supports SSR
- Supports [Nuxt.js](https://nuxtjs.org/)
- Supports [Electron](http://electron.atom.io/)
- iView does not support IE8 or below since [Vue.js](https://vuejs.org/v2/guide/reactivity.html) uses `Object.defineProperty` to track changes which is not supported by these browsers.
|
27f0d894
梁灏
update readme
|
102
|
|
1d5e9fc3
Sergio Crisostomo
README updates
|
103
104
|
## Community
|
692be62c
md678685
Fix some English ...
|
105
|
If you want to contribute or have questions or bugs to report:
|
1d5e9fc3
Sergio Crisostomo
README updates
|
106
|
|
692be62c
md678685
Fix some English ...
|
107
108
109
|
**Questions:** Find other users at the [Gitter chat](https://gitter.im/iview/iview) or post on [StackOverflow using `[iview-ui]` tag](https://stackoverflow.com/questions/tagged/iview-ui)
**Bugs:** [File a issue here](https://github.com/iview/iview/issues) - please provide a example so we can help you better
**Contribute:** Contact us in [Gitter chat](https://gitter.im/iview/iview), WeChat or via mail to `admin@aresn.com`. PRs welcome!
|
27f0d894
梁灏
update readme
|
110
|
|
c9080021
梁灏
update readme
|
111
|
## Major Contributors
|
55be6f6a
Aresn
Update README.md
|
112
113
114
115
116
|
|Name|Avatar|Name|Avatar|Name|Avatar|
|---|---|---|---|---|---|
|[Aresn](https://github.com/icarusion) |  |[jingsam](https://github.com/jingsam) |  | [rijn](https://github.com/rijn) |  |
|[lcx960324](https://github.com/lcx960324) |  |[GITleonine1989](https://github.com/GITleonine1989) |  |[huixisheng](https://github.com/huixisheng) |  |
|[Sergio Crisostomo](https://github.com/SergioCrisostomo) |  |
|
c9080021
梁灏
update readme
|
117
|
|
d270488b
梁灏
update readme
|
118
|
|
27f0d894
梁灏
update readme
|
119
120
|
## Links
|
cfb4aad4
Aresn
Update README.md
|
121
|
- [TalkingData](https://github.com/TalkingData)
|
27f0d894
梁灏
update readme
|
122
123
|
- [Vue](https://github.com/vuejs/vue)
- [Webpack](https://github.com/webpack/webpack)
|
1d5e9fc3
Sergio Crisostomo
README updates
|
124
|
- [Ionicons](https://github.com/driftyco/ionicons)
|
27f0d894
梁灏
update readme
|
125
|
- [Ant Design](https://github.com/ant-design/ant-design)
|
644c37b3
梁灏
update License
|
126
|
|
62a40f4f
梁灏
LICENSE add ionicons
|
127
128
129
|
## License
[MIT](http://opensource.org/licenses/MIT)
|
8be3ad5f
EyreFreeᵈᵉᵛ
Change gitter bad...
|
130
|
Copyright (c) 2016-present, iView
|