methods: {
addtodo: function (newtodo) {
newtodo.completed=false,
this.todos.push(newtodo);
this.newTodo = {id: null, title: ''};
},
}
这个问题的吧,你修改一下这个,参照一下视频那样:
addtodo: function (newTodo) {
this.todos.push(newTodo);
this.newTodo = {id: null, title: '',completed:false};
},