Created
March 29, 2018 09:05
-
-
Save tzhbami7/5cc54662e7401af8bb89ae07fcf161e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="app-4"> | |
<ol> | |
<li v-for="todo in todos"> | |
{{ todo.text }} | |
</li> | |
</ol> | |
</div> | |
var app4 = new Vue({ | |
el: '#app-4', | |
data: { | |
todos: [ | |
{ text: 'Learn JavaScript' }, | |
{ text: 'Learn Vue' }, | |
{ text: 'Build something awesome' } | |
] | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment