b2673d75bf
* simplify context menu * move computed to comp-api * feat: ✨ create share tokens for recipes for sharing recieps to non-users * feat: ✨ shareable recipe links with og tags
22 lines
No EOL
510 B
Vue
22 lines
No EOL
510 B
Vue
<template>
|
|
<v-app dark>
|
|
<TheSnackbar />
|
|
|
|
<AppHeader :menu="false"> </AppHeader>
|
|
<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";
|
|
import AppHeader from "@/components/Layout/AppHeader.vue";
|
|
export default defineComponent({
|
|
components: { TheSnackbar, AppHeader },
|
|
});
|
|
</script> |