动态组件


var vm = new Vue({
el:"#box",
data:{
who:"home"
},
components:{
"home":{
template:`<div>home
<input type="text"/>
</div>`
},
"list":{
template:`<div>list</div>`
},
"shopcar":{
template:`<div>shopcar</div>`
},
}
})



被折叠的 条评论
为什么被折叠?



