feature/client-template #2

Merged
homeburger merged 27 commits from feature/client-template into main 2026-03-14 23:10:46 -05:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit fef9af6e91 - Show all commits

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>

View File

@@ -9,4 +9,5 @@
<h1>straight up gargoyling it !</h1>
<h3>yeah im so cool rn</h3>
<h1>imagining what I could do with themes :o</h1>
<router-link tag="button" :to="`/users`">>Users</router-link>
</template>