new Vue({
el:'#app',
data:{
todos:[
{text:'Learn Javascript'},
{text:'Learn Vue.js'},
{text:'Build Something Awesome'}
]
}
})
<div id="app">
<ul>
<li v-for = "todo in todos">
{{ todo.text }}
</li>
</ul>
</div>