14 lines
227 B
Vue
14 lines
227 B
Vue
<script setup lang="ts">
|
|
import { fr } from "@nuxt/ui/locale";
|
|
</script>
|
|
|
|
<template>
|
|
<UApp id="layout-default" :locale="fr">
|
|
<SiteHeader />
|
|
<UMain>
|
|
<slot />
|
|
</UMain>
|
|
<SiteFooter />
|
|
</UApp>
|
|
</template>
|