Files
SIRH/frontend/layouts/auth.vue
tristan 31c0ae15f4
Some checks failed
Auto Tag Develop / tag (push) Failing after 4s
feat : numéro de version et config CI/CD
2026-02-09 15:40:14 +01:00

12 lines
325 B
Vue

<template>
<div class="min-h-screen bg-tertiary-500 from-tertiary-50 via-white to-neutral-100 text-neutral-900">
<main class="mx-auto flex min-h-screen w-full max-w-[720px] items-center px-6 py-12">
<slot />
</main>
</div>
</template>
<script setup lang="ts">
const { version } = useAppVersion()
</script>