Files
failwell/src/views/HomeView.vue
2023-04-09 10:33:44 +02:00

15 lines
393 B
Vue

<script setup lang="ts">
import TaskList from '@/use-cases/task/components/TaskList.vue'
import { useTaskStore } from '@/use-cases/task/stores/useTask.store'
const taskStore = useTaskStore()
</script>
<template>
<main>
<RouterLink :to="{ name: 'new-task' }">New task</RouterLink>
<task-list />
<button @click="() => taskStore.reset()">reset list</button>
</main>
</template>