Skip to content

Commit be74193

Browse files
committed
example in readme [ci skip]
1 parent 26555a8 commit be74193

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

README.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,24 @@ Vue.js is a library for building interactive web interfaces. It provides the ben
1313
- Intuitive API that simply makes sense
1414
- The flexibility to mix & match small libraries for a custom front-end stack
1515

16-
For more details, guides and API reference, visit [vuejs.org](http://vuejs.org).
16+
It's really really easy to get started. Seriously, it's so easy:
17+
18+
``` html
19+
<div id="demo">
20+
{{message}}
21+
</div>
22+
```
23+
24+
``` js
25+
var demo = new Vue({
26+
el: '#demo',
27+
data: {
28+
message: 'Hello Vue.js!'
29+
}
30+
})
31+
```
32+
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).
1734

1835
## Browser Support
1936

0 commit comments

Comments
 (0)