fix: UApp in app.vue

This commit is contained in:
2026-01-30 15:39:19 -05:00
parent 27380290e1
commit 28f6e1ae7c
2 changed files with 8 additions and 8 deletions

View File

@@ -1,9 +1,13 @@
<script setup lang="ts">
import { fr } from "@nuxt/ui/locale";
</script>
<template>
<div>
<UApp :locale="fr">
<NuxtRouteAnnouncer />
<NuxtLoadingIndicator />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</UApp>
</template>

View File

@@ -1,13 +1,9 @@
<script setup lang="ts">
import { fr } from "@nuxt/ui/locale";
</script>
<template>
<UApp id="layout-default" :locale="fr">
<div id="layout-default">
<SiteHeader />
<UMain>
<slot />
</UMain>
<SiteFooter />
</UApp>
</div>
</template>