懵逼的我
2019-05-15 18:01
请问tabs.vue中的todo是从哪来的?不需要用props传递吗?
computed: {
unfinishedTodoLength(){
return this.todos.filter(todo => !todo.completed).length
}
},
这个 todo 是 filter()函数中回调的一个参数
写成这样也是可以的
return this.todos.filter(e => !e.completed).length
Vue+Webpack打造todo应用
84606 学习 · 787 问题
相似问题