在2-6讲局部组件的时候,在components定义的todoItem,但是在上面写的是<todo-item>,两者不匹配为何会生效,我本地就不生效?
来源:2-7 使用组件改造TodoList
qq_画地为牢_6
2018-07-04
<todoItem v-bind:content="item"
v-for="item in list">
</todoItem>
components: {
todoItem: todoItem
},
写回答
2回答
-
慕前端8048632
2018-07-09
components里后边的todoItem没加冒号吧
00 -
Dell
2018-07-04
组件必须用大写开头,这个我还强调过,你
components: {
todoItem: todoItem
},
这里非要用小写
00
相似问题