mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	* feat(frontend): ✨ add user registration page (WIP) * feat(backend): ✨ add user registration (WIP) * test(backend): ✅ add validator testing for registration schema * feat(backend): ✨ continued work on user sign-up * feat(backend): ✨ add signup flow and user/group settings * test(backend): ✅ user-creation tests and small refactor of existing tests * fix(backend): ✅ fix failing group tests * style: 🎨 fix lint issues Co-authored-by: hay-kot <hay-kot@pm.me>
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.3 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-tabs v-model="tab" show-arrows>
 | |
|       <v-tab v-for="(cat, index) in book.categories" :key="index">
 | |
|         {{ cat.name }}
 | |
|       </v-tab>
 | |
|     </v-tabs>
 | |
|     <v-tabs-items v-model="tab">
 | |
|       <v-tab-item v-for="(cat, idx) in book.categories" :key="`tabs` + idx">
 | |
|         <RecipeCardSection class="mb-5 mx-1" :recipes="cat.recipes" />
 | |
|       </v-tab-item>
 | |
|     </v-tabs-items>
 | |
|   </v-container>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import { defineComponent, useRoute, ref } 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);
 | |
| 
 | |
|     return {
 | |
|       book,
 | |
|       tab,
 | |
|     };
 | |
|   },
 | |
| });
 | |
| </script>
 | |
| 
 | |
| <style scoped>
 | |
| </style> |