router link in kebab case

This commit is contained in:
Julien Calixte
2023-04-09 11:03:59 +02:00
parent b8f79f5208
commit 856a272b46
3 changed files with 5 additions and 5 deletions

View File

@@ -7,7 +7,7 @@ const taskStore = useTaskStore()
<template>
<main>
<RouterLink :to="{ name: 'new-task' }">New task</RouterLink>
<router-link :to="{ name: 'new-task' }">New task</router-link>
<task-list />
<button @click="() => taskStore.reset()">reset list</button>
</main>