mealie/frontend/layouts/basic.vue
Hayden b2673d75bf
Feature/shareable recipes (#866)
* 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
2021-12-05 11:55:46 -09:00

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>