Skip to content

Commit

Permalink
example in readme [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Feb 6, 2014
1 parent 26555a8 commit be74193
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,24 @@ Vue.js is a library for building interactive web interfaces. It provides the ben
- Intuitive API that simply makes sense
- The flexibility to mix & match small libraries for a custom front-end stack

For more details, guides and API reference, visit [vuejs.org](http://vuejs.org).
It's really really easy to get started. Seriously, it's so easy:

``` html
<div id="demo">
{{message}}
</div>
```

``` js
var demo = new Vue({
el: '#demo',
data: {
message: 'Hello Vue.js!'
}
})
```

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).

## Browser Support

Expand Down

0 comments on commit be74193

Please sign in to comment.