Change patron actions links to NuxtLinks

This commit is contained in:
Marley 2023-07-13 20:27:20 -07:00
parent 7b99ae5488
commit d8a42b48b1

View file

@ -44,9 +44,11 @@ import patrons from '@data/patrons'
</TableTd>
<TableTd actions>
<a href="#">Check Out</a>
<a href="#">View</a>
<a href="#">Edit</a>
<NuxtLink :to="`/patrons/${patron.id}/checkout`">
Check Out
</NuxtLink>
<NuxtLink :to="`/patrons/${patron.id}`">View</NuxtLink>
<NuxtLink :to="`/patrons/${patron.id}/edit`">Edit</NuxtLink>
</TableTd>
</tr>