mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 17:53:31 -04:00 
			
		
		
		
	* wip: fix recipe card section * refactor basic search to share composable * fix dialog results * use search for cat/tag/tool pages * update organizer to support name edits * fix composable typing
		
			
				
	
	
		
			38 lines
		
	
	
		
			826 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			826 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <v-container>
 | |
|     <RecipeOrganizerPage
 | |
|       v-if="items"
 | |
|       :items="items"
 | |
|       :icon="$globals.icons.tags"
 | |
|       item-type="categories"
 | |
|       @delete="actions.deleteOne"
 | |
|       @update="actions.updateOne"
 | |
|     >
 | |
|       <template #title> {{ $tc("category.categories") }} </template>
 | |
|     </RecipeOrganizerPage>
 | |
|   </v-container>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import { defineComponent } from "@nuxtjs/composition-api";
 | |
| import RecipeOrganizerPage from "~/components/Domain/Recipe/RecipeOrganizerPage.vue";
 | |
| import { useCategoryStore } from "~/composables/store";
 | |
| 
 | |
| export default defineComponent({
 | |
|   components: {
 | |
|     RecipeOrganizerPage,
 | |
|   },
 | |
|   setup() {
 | |
|     const { items, actions } = useCategoryStore();
 | |
| 
 | |
|     return {
 | |
|       items,
 | |
|       actions,
 | |
|     };
 | |
|   },
 | |
|   head: {
 | |
|     title: "Categories",
 | |
|   },
 | |
| });
 | |
| </script>
 |