30 lines
554 B
Vue
30 lines
554 B
Vue
<template>
|
|
<NuxtPage />
|
|
</template>
|
|
|
|
<script setup>
|
|
/*
|
|
let globalData = await useFetchGlobalData();
|
|
globalData = globalData.globalData._object.$sglobalData;
|
|
|
|
useSeoMeta({
|
|
ogImage: '', // img from public folder
|
|
ogImageAlt: , // globalData.something
|
|
twitterImage: '', // img from public folder
|
|
});
|
|
|
|
useHead({
|
|
htmlAttrs: {
|
|
lang: 'fr'
|
|
},
|
|
link: [
|
|
{
|
|
rel: 'icon',
|
|
type: 'image/png',
|
|
href: '' // img from public folder
|
|
}
|
|
]
|
|
});
|
|
*/
|
|
</script>
|