Files
SIRH/frontend/app.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

14 lines
181 B
Vue

<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script setup lang="ts">
const { load } = useAppVersion()
onMounted(() => {
load()
})
</script>