Change patron actions links to NuxtLinks
This commit is contained in:
parent
7b99ae5488
commit
d8a42b48b1
1 changed files with 5 additions and 3 deletions
|
@ -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>
|
||||
|
||||
|
|
Loading…
Reference in a new issue