Skip to content

Instantly share code, notes, and snippets.

@tzhbami7
Created March 29, 2018 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tzhbami7/5cc54662e7401af8bb89ae07fcf161e8 to your computer and use it in GitHub Desktop.
Save tzhbami7/5cc54662e7401af8bb89ae07fcf161e8 to your computer and use it in GitHub Desktop.
<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