scrimba
Vue.js for Beginners
Vue.js Tutorial: v-for
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Vue.js Tutorial: v-for
AboutCommentsNotes
Vue.js Tutorial: v-for
Expand for more info
index.js
run
preview
console
var app = new Vue({
el: '#app',
data: {
todos: [
{ text: 'Learn JavaScript' },
{ text: 'Learn Vue' },
{ text: 'Build something awesome' }
]
}
})



Console
Preview
280×340 (100%)
index.html
-2:42