Vue.component('todo-item',{
props:['todo'],
template:'<li>{{todo.text}}</li>'
})
var app1 = new Vue({
el:"#app1",
data:{
items:[
{ text:'香蕉'},
{ text:'西瓜'},
{ text:'梨子'}
]
}
})
<div id = "app1">
<ol>
<todo-item v-for="item in items" v-bind:todo="item"></todo-item>
</ol>
</div>