|
2 | 2 |
|
3 | 3 | # Vue.js [](https://travis-ci.org/yyx990803/vue) [](https://saucelabs.com/u/vuejs) [](https://coveralls.io/r/yyx990803/vue?branch=master)
|
4 | 4 |
|
5 |
| -> MVVM made simple. |
| 5 | +## Intro |
6 | 6 |
|
7 |
| -## Introduction |
| 7 | +Vue.js is a library for building interactive web interfaces. It provides data-reactive components with a simple and flexible API. Core features include: |
8 | 8 |
|
9 |
| -Vue.js is a library for building interactive web interfaces. It provides the benefits of MVVM data binding and a composable component system with a simple and flexible API. You should try it out if you like: |
| 9 | +- Two-way data binding |
| 10 | +- Plain JavaScript objects as reactive models |
| 11 | +- Component-oriented development style |
10 | 12 |
|
11 |
| -- Intuitive API that simply makes sense |
12 |
| -- Extendable Data bindings |
13 |
| -- Plain JavaScript objects as models |
14 |
| -- Building interface by composing reusable components |
15 |
| -- Flexibility to mix & match the view layer with other libraries |
| 13 | +Note that Vue.js only supports IE9 or above. To check out live examples and docs, visit [vuejs.org](http://vuejs.org). |
16 | 14 |
|
17 |
| -It's really really easy to get started. Seriously, it's so easy: |
| 15 | +## Questions |
18 | 16 |
|
19 |
| -``` html |
20 |
| -<div id="demo"> |
21 |
| - {{message}} |
22 |
| - <input v-model="message"> |
23 |
| -</div> |
24 |
| -``` |
| 17 | +For questions and support please use the Gitter room: [](https://gitter.im/yyx990803/vue) or submit issues at [vuejs/Discussion](https://github.com/vuejs/Discussion/issues). The issue list of this repo is **exclusively** for bug reports and feature requests. |
25 | 18 |
|
26 |
| -``` js |
27 |
| -var demo = new Vue({ |
28 |
| - el: '#demo', |
29 |
| - data: { |
30 |
| - message: 'Hello Vue.js!' |
31 |
| - } |
32 |
| -}) |
33 |
| -``` |
| 19 | +## Issues |
34 | 20 |
|
35 |
| -To check out the live demo, guides and API reference, visit [vuejs.org](http://vuejs.org). |
36 |
| - |
37 |
| -## Browser Support |
38 |
| - |
39 |
| -Vue.js supports [most ECMAScript 5 compliant browsers](https://saucelabs.com/u/vuejs), essentially IE9+. IE8 and below are not supported. |
| 21 | +Please make sure to read the [Issue Reporting Checklist](https://github.com/yyx990803/vue/blob/master/CONTRIBUTING.md#issue-reporting-checklist) before opening an issue. Issues not conforming to the guidelines may be closed immediately. |
40 | 22 |
|
41 | 23 | ## Contribution
|
42 | 24 |
|
43 |
| -Read the [contributing guide](https://github.com/yyx990803/vue/blob/master/CONTRIBUTING.md). |
44 |
| - |
45 |
| -## Get in Touch |
46 |
| - |
47 |
| -- For latest releases and announcements, follow on Twitter: [@vuejs](https://twitter.com/vuejs) |
48 |
| -- Live discussion: [](https://gitter.im/yyx990803/vue) |
49 |
| -- Bugs reports: first read the [issue checklist](https://github.com/yyx990803/vue/blob/master/CONTRIBUTING.md#issue-reporting-checklist), then [open an issue](https://github.com/yyx990803/vue/issues). |
50 |
| -- Questions, suggestions, feature requests: open an issue at [vuejs/Discussion](https://github.com/vuejs/Discussion/issues). |
51 |
| -- If you have a Vue-related project/component/tool, add it to [this list](https://github.com/yyx990803/vue/wiki/User-Contributed-Components-&-Tools)! |
| 25 | +Please make sure to read the [Contributing Guide](https://github.com/yyx990803/vue/blob/master/CONTRIBUTING.md) before making a pull request. If you have a Vue-related project/component/tool, add it to [this list](https://github.com/yyx990803/vue/wiki/User-Contributed-Components-&-Tools)! |
52 | 26 |
|
53 | 27 | ## Changelog
|
54 | 28 |
|
55 | 29 | Details changes for each release are documented in the [release notes](https://github.com/yyx990803/vue/releases).
|
56 | 30 |
|
| 31 | +## Stay In Touch |
| 32 | + |
| 33 | +- For latest releases and announcements, follow on Twitter: [@vuejs](https://twitter.com/vuejs) |
| 34 | + |
57 | 35 | ## License
|
58 | 36 |
|
59 | 37 | [MIT](http://opensource.org/licenses/MIT)
|
|
0 commit comments