feat : creation d'une page d'aministration pour la ajout / modification d'utlisateur

This commit is contained in:
2026-02-09 13:59:14 +01:00
parent 311f523647
commit ca1910b1d1
13 changed files with 339 additions and 98 deletions

View File

@@ -28,7 +28,7 @@
<!-- Liste des liens à ajouter ci-dessous -->
<!--Button pour afficher le component admin-users -->
<NuxtLink
to="/admin/user-list"
to="/admin/user/list"
class="block px-4 py-2 rounded hover:bg-primary-600 transition"
>
Utilisateurs
@@ -58,8 +58,9 @@
<script setup lang="ts">
import auth from "~/layouts/auth.vue";
import {useAuthStore} from '~/stores/auth'
const auth = useAuthStore()
const { version } = useAppVersion()
const handleLogout = async () => {
try {