Tasks: able to get and print tasks

This commit is contained in:
2023-12-31 01:39:42 +01:00
parent cf20935e01
commit 4c9765b4a3
10 changed files with 103 additions and 24 deletions

View File

@@ -25,6 +25,10 @@ export default {
return {
tasks: AppStore.data.fetchedTasks
}
},
async mounted() {
await AppStore.fetchData()
this.tasks = AppStore.data.fetchedTasks
}
}
</script>