methods: {
addItem: function(){
let item = {
title: this.newItem,
isDone: false
};
this.todos.push(item);
this.newItem = '';
},
例えばこの部分ですが、newItemにはthisがつき、itemにはつきません。
何か簡単にthisが必要かどうか見分ける方法はありますか?
この回答を見るにはプレミアムプランへの登録が必要です
プレミアムプランとは?