mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-24 07:39:41 +02:00
Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
23 lines
502 B
Vue
23 lines
502 B
Vue
<template>
|
|
<v-app dark>
|
|
<TheSnackbar />
|
|
|
|
<AppHeader :menu="false" />
|
|
<v-main>
|
|
<v-scroll-x-transition>
|
|
<div>
|
|
<NuxtPage />
|
|
</div>
|
|
</v-scroll-x-transition>
|
|
</v-main>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import TheSnackbar from "~/components/Layout/LayoutParts/TheSnackbar.vue";
|
|
import AppHeader from "@/components/Layout/LayoutParts/AppHeader.vue";
|
|
|
|
export default defineNuxtComponent({
|
|
components: { TheSnackbar, AppHeader },
|
|
});
|
|
</script>
|