mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-19 13:19:41 +02:00
20 lines
395 B
Vue
20 lines
395 B
Vue
|
<template>
|
||
|
<v-app dark>
|
||
|
<TheSnackbar />
|
||
|
|
||
|
<v-main>
|
||
|
<v-scroll-x-transition>
|
||
|
<Nuxt />
|
||
|
</v-scroll-x-transition>
|
||
|
</v-main>
|
||
|
</v-app>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { defineComponent } from "@nuxtjs/composition-api";
|
||
|
import TheSnackbar from "~/components/Layout/TheSnackbar.vue";
|
||
|
export default defineComponent({
|
||
|
components: { TheSnackbar },
|
||
|
});
|
||
|
</script>
|