Aug 2017
Michael Holroyd, Ph.D.<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' }]}})
app4.todos.push({text: 'New Item'})
Example:
|