feat : numéro de version et config CI/CD
Some checks failed
Auto Tag Develop / tag (push) Failing after 4s

This commit is contained in:
2026-02-09 15:40:14 +01:00
parent c1025d6066
commit 31c0ae15f4
14 changed files with 295 additions and 51 deletions

View File

@@ -5,3 +5,7 @@
</main>
</div>
</template>
<script setup lang="ts">
const { version } = useAppVersion()
</script>

View File

@@ -43,7 +43,7 @@
</NuxtLink>
</nav>
<div class="p-4">
<div class="flex flex-col gap-2 items-center p-4">
<button
type="button"
class="w-full rounded-lg px-4 py-2 text-md font-semibold text-white bg-primary-500"
@@ -51,6 +51,7 @@
>
Déconnexion
</button>
<p class="font-bold">v{{ version }}</p>
</div>
</aside>
@@ -63,6 +64,7 @@
<script setup lang="ts">
const auth = useAuthStore()
const { version } = useAppVersion()
const handleLogout = async () => {
await auth.logout()