add users link on homepage
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 6s

This commit is contained in:
2026-03-14 16:06:05 -05:00
parent 60215782c0
commit fef9af6e91
2 changed files with 2 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ onMounted(() => {
<tr v-for="user in store.users" :key="user.id">
<td>{{ user.name }}</td>
<td>
<router-link :to="`/user/${user.id}`">Edit</router-link>
<router-link tag="button" :to="`/user/${user.id}`">Edit</router-link>
<button @click="store.removeUser(user.id)">Delete</button>
</td>
</tr>