save and navigate to home where we see tasks

This commit is contained in:
Julien Calixte
2023-04-09 10:21:20 +02:00
parent e6e7db466a
commit 27b1783185
3 changed files with 24 additions and 2 deletions

View File

@@ -1,7 +1,10 @@
<script setup lang="ts"></script>
<script setup lang="ts">
import TaskList from '@/use-cases/task/components/TaskList.vue'
</script>
<template>
<main>
<RouterLink :to="{ name: 'new-task' }">New task</RouterLink>
<task-list />
</main>
</template>