generated from pascalmartineau/wp-skeleton
feat: Initial Nuxt app
This commit is contained in:
30
wp-content/themes/ccat/app/app.vue
Normal file
30
wp-content/themes/ccat/app/app.vue
Normal file
@@ -0,0 +1,30 @@
|
||||
<script setup lang="ts">
|
||||
import { fr } from "@nuxt/ui/locale";
|
||||
|
||||
useHead({
|
||||
htmlAttrs: {
|
||||
lang: "fr-CA",
|
||||
},
|
||||
meta: [
|
||||
{ charset: "utf-8" },
|
||||
{ name: "viewport", content: "width=device-width, initial-scale=1" },
|
||||
],
|
||||
link: [
|
||||
{ rel: "icon", href: "/favicon.ico" },
|
||||
],
|
||||
});
|
||||
|
||||
useSeoMeta({
|
||||
titleTemplate: "%s - Conseil de la culture de l'Abitibi-Témiscamingue",
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<UApp :locale="fr">
|
||||
<NuxtRouteAnnouncer />
|
||||
<NuxtLoadingIndicator />
|
||||
<NuxtLayout>
|
||||
<NuxtPage />
|
||||
</NuxtLayout>
|
||||
</UApp>
|
||||
</template>
|
||||
Reference in New Issue
Block a user