mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-11-04 03:03:18 -05:00 
			
		
		
		
	* use generic context menu * implement organizer stores * add basic organizer types * refactor selectors to apply for all organizers * remove legacy organizer composables
		
			
				
	
	
		
			37 lines
		
	
	
		
			786 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			786 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <v-container>
 | 
						|
    <RecipeOrganizerPage
 | 
						|
      v-if="items"
 | 
						|
      :items="items"
 | 
						|
      :icon="$globals.icons.tags"
 | 
						|
      item-type="categories"
 | 
						|
      @delete="actions.deleteOne"
 | 
						|
    >
 | 
						|
      <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: "Tags",
 | 
						|
  },
 | 
						|
});
 | 
						|
</script>
 |