This commit is contained in:
Thien Pham Van
2026-03-17 14:08:57 +07:00
parent c9940afc82
commit cf144ea896
34 changed files with 10875 additions and 0 deletions

15
app/app.vue Normal file
View File

@@ -0,0 +1,15 @@
<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script setup>
const route = useRoute();
useHead({
// or as a function
titleTemplate: (productCategory) => {
return productCategory ? `${productCategory} - Site Title` : 'Site Title';
},
meta: [{ property: 'og:title', content: `App Name - ${route.meta.title}` }],
});
</script>