⚠️ 7-2. 見落としがちな落とし穴チェックリスト

✅ 要点まとめ


🟢 よくある落とし穴リスト ✅

this を消し忘れる問題

// 間違い
const increment = () => {
  this.count++; // ❌ this はない!
};

// 正解
const increment = () => {
  count.value++;
};


ref の .value を忘れる

const count = ref(0);

// 間違い
const doubleCount = computed(() => count * 2); // ❌

// 正解
const doubleCount = computed(() => count.value * 2); // ✅


defineProps() に型を書かない or デフォルト値が設定されてない