Skip to content

Commit ed78820

Browse files
committed
readme
1 parent efcaad1 commit ed78820

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,18 @@
88

99
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:
1010

11+
- Intuitive API that simply makes sense
1112
- Extendable Data bindings
1213
- Plain JavaScript objects as models
13-
- Intuitive API that simply makes sense
14-
- The flexibility to mix & match small libraries for a custom front-end stack
14+
- Building interface by composing reusable components
15+
- Flexibility to mix & match small libraries for a custom front-end stack
1516

1617
It's really really easy to get started. Seriously, it's so easy:
1718

1819
``` html
1920
<div id="demo">
2021
{{message}}
22+
<input v-model="message">
2123
</div>
2224
```
2325

@@ -30,7 +32,7 @@ var demo = new Vue({
3032
})
3133
```
3234

33-
But there's much more to it, and it will make your life developing interfaces so much easier. For more details, guides and API reference, visit [vuejs.org](http://vuejs.org).
35+
To check out the live demo, guides and API reference, visit [vuejs.org](http://vuejs.org).
3436

3537
## Browser Support
3638

0 commit comments

Comments
 (0)