Tasks
Incomplete Tasks
let app = new Vue({
el: "#app",
data: {
tasks: [
{desc: "clean", completed: false},
{desc: "finish paper", completed: true},
{desc: "do ppt", completed: false},
{desc: "find a job", completed: true}
]
},
computed: {
incompleteTasks() {
return this.tasks.filter((t) => t.completed)
}
}
})
用vue学着写demo,结果上面的代码报了无法编译的错误
vue.js:515 [Vue warn]: failed to compile template:
Tasks
Incomplete Tasks
(found in root instance)
请问为什么报错啊?感觉很正常的代码啊,谢谢!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
-->