2021-08-01 19:24:47 -08:00
|
|
|
<template>
|
|
|
|
|
<v-app dark>
|
2021-09-05 22:05:29 -08:00
|
|
|
<TheSnackbar />
|
2021-12-05 11:55:46 -09:00
|
|
|
|
2025-06-20 00:09:12 +07:00
|
|
|
<AppHeader :menu="false" />
|
2021-08-01 19:24:47 -08:00
|
|
|
<v-main>
|
|
|
|
|
<v-scroll-x-transition>
|
2025-06-20 00:09:12 +07:00
|
|
|
<div>
|
|
|
|
|
<NuxtPage />
|
|
|
|
|
</div>
|
2021-08-01 19:24:47 -08:00
|
|
|
</v-scroll-x-transition>
|
|
|
|
|
</v-main>
|
|
|
|
|
</v-app>
|
|
|
|
|
</template>
|
2023-09-14 09:01:24 -05:00
|
|
|
|
2025-09-03 09:56:38 -05:00
|
|
|
<script setup lang="ts">
|
2023-09-14 09:01:24 -05:00
|
|
|
import TheSnackbar from "~/components/Layout/LayoutParts/TheSnackbar.vue";
|
|
|
|
|
import AppHeader from "@/components/Layout/LayoutParts/AppHeader.vue";
|
2025-09-03 09:56:38 -05:00
|
|
|
import { useGlobalI18n } from "~/composables/use-global-i18n";
|
2025-06-20 00:09:12 +07:00
|
|
|
|
2025-09-03 09:56:38 -05:00
|
|
|
useGlobalI18n(); // ensure i18n is initialized
|
2023-09-14 09:01:24 -05:00
|
|
|
</script>
|