mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 01:34:39 -04:00 
			
		
		
		
	
		
			
	
	
		
			25 lines
		
	
	
		
			486 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
		
		
			
		
	
	
			25 lines
		
	
	
		
			486 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
|   | <template> | ||
|  |   <v-toolbar flat> | ||
|  |     <BaseButton color="null" rounded secondary @click="$router.go(-1)"> | ||
|  |       <template #icon> {{ $globals.icons.arrowLeftBold }}</template> | ||
|  |       Back | ||
|  |     </BaseButton> | ||
|  |     <slot></slot> | ||
|  |   </v-toolbar> | ||
|  | </template> | ||
|  | 
 | ||
|  | <script lang="ts"> | ||
|  | import { defineComponent } from "@nuxtjs/composition-api"; | ||
|  | 
 | ||
|  | export default defineComponent({ | ||
|  |   props: { | ||
|  |     back: { | ||
|  |       type: Boolean, | ||
|  |       default: false, | ||
|  |     }, | ||
|  |   }, | ||
|  | }); | ||
|  | </script> | ||
|  | 
 | ||
|  | <style lang="scss" scoped> | ||
|  | </style> |