mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	* migration: add public, tags, and tools * generate frontend types * add help icon * start replacement for tool-tag-category selector * add help icon utility * use generator types * add support for cookbook features * add UI elements for cookbook features * fix tests * fix type error
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <v-container v-if="book" fluid>
 | |
|     <v-app-bar color="transparent" flat class="mt-n1 rounded">
 | |
|       <v-icon large left> {{ $globals.icons.pages }} </v-icon>
 | |
|       <v-toolbar-title class="headline"> {{ book.name }} </v-toolbar-title>
 | |
|     </v-app-bar>
 | |
|     <v-card flat>
 | |
|       <v-card-text class="py-0">
 | |
|         {{ book.description }}
 | |
|       </v-card-text>
 | |
|     </v-card>
 | |
| 
 | |
|     <v-container class="pa-0">
 | |
|       <RecipeCardSection class="mb-5 mx-1" :recipes="book.recipes" />
 | |
|     </v-container>
 | |
|   </v-container>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import { defineComponent, useRoute, ref, useMeta } from "@nuxtjs/composition-api";
 | |
| import RecipeCardSection from "@/components/Domain/Recipe/RecipeCardSection.vue";
 | |
| import { useCookbook } from "~/composables/use-group-cookbooks";
 | |
| 
 | |
| export default defineComponent({
 | |
|   components: { RecipeCardSection },
 | |
|   setup() {
 | |
|     const route = useRoute();
 | |
|     const slug = route.value.params.slug;
 | |
|     const { getOne } = useCookbook();
 | |
| 
 | |
|     const tab = ref(null);
 | |
| 
 | |
|     const book = getOne(slug);
 | |
| 
 | |
|     useMeta(() => {
 | |
|       return {
 | |
|         title: book?.value?.name || "Cookbook",
 | |
|       };
 | |
|     });
 | |
| 
 | |
|     return {
 | |
|       book,
 | |
|       tab,
 | |
|     };
 | |
|   },
 | |
|   head: {}, // Must include for useMeta
 | |
| });
 | |
| </script>
 |