diff --git a/src/components/WalletComponent.vue b/src/components/WalletComponent.vue index ae3d9a2..faa24a7 100644 --- a/src/components/WalletComponent.vue +++ b/src/components/WalletComponent.vue @@ -1,7 +1,7 @@ @@ -20,10 +20,10 @@ interface Props { // Props の取得 const props = defineProps(); -const tasks = ref([] as HistoryItem[]); +const histories = ref([] as HistoryItem[]); getHistories(props.childId, true).then((res) => { - tasks.value = res; + histories.value = res; });