2021-08-01 19:24:47 -08:00
|
|
|
<template>
|
|
|
|
<v-app dark>
|
2025-06-20 18:04:45 +02:00
|
|
|
<NuxtPwaManifest />
|
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
|
|
|
|
2021-08-01 19:24:47 -08:00
|
|
|
<script 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-06-20 00:09:12 +07:00
|
|
|
|
|
|
|
export default defineNuxtComponent({
|
2021-12-05 11:55:46 -09:00
|
|
|
components: { TheSnackbar, AppHeader },
|
2021-08-01 19:24:47 -08:00
|
|
|
});
|
2023-09-14 09:01:24 -05:00
|
|
|
</script>
|