Intro to Vue 3 + Composition API: Build a Todo Appというyoutubeのハンズオン動画を参考にComposition APIの学習しているのですが、作業途中、以下のようなエラーとなってしまいます。
[Vue warn]: Property or method "newTodo" is not defined on the instance but referenced during render.
以下、どれもインスタンスで定義されていませんとなってしまい、どのように解決すればいいのかわからずにいます。
- newTodo
- todos
- addNewTodo
##コード
vue
1<template> 2 <div> 3 <h1>Vue 3 Todo App</h1> 4 <form @submit.prevent="addNewTodo"> 5 <label>New Todo</label> 6 <input v-model="newTodo" name="newTodo" /> 7 <button>Add New Todo</button> 8 </form> 9 <ul> 10 <li v-for="todo in todos" :key="todo.id"> 11 <h3>{{ todo.content }}</h3> 12 </li> 13 </ul> 14 </div> 15</template> 16 17<script> 18import { ref } from "vue"; 19// import { defineComponent, ref, reactive } from "@vue/composition-api"; 20 21export default { 22 setup() { 23 // 初期化 24 const newTodo = ref(""); 25 const todos = ref([]); 26 27 // listに追加 28 function addNewTodo() { 29 todos.value.push({ 30 done: false, 31 content: newTodo.value, 32 }); 33 } 34 return { 35 todos, 36 newTodo, 37 addNewTodo, 38 }; 39 }, 40}; 41</script> 42 43<style> 44#app { 45 font-family: Avenir, Helvetica, Arial, sans-serif; 46 -webkit-font-smoothing: antialiased; 47 -moz-osx-font-smoothing: grayscale; 48 text-align: center; 49 color: #2c3e50; 50 margin-top: 60px; 51} 52</style>
エラーキャプチャ
環境
node v13.12.0 @vue/composition-api": "^1.0.0-beta.18
なにかアドバイスいただけると助かります。
よろしくお願いします。
あなたの回答
tips
プレビュー