mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-03 18:53:17 -05:00 
			
		
		
		
	* 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
		
	
	
		
			510 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			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> |