mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-30 17:53:31 -04:00 
			
		
		
		
	Co-authored-by: Michael Genson <71845777+michael-genson@users.noreply.github.com> Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
		
			
				
	
	
		
			68 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <v-menu
 | |
|     offset-y
 | |
|     start
 | |
|     :bottom="!menuTop"
 | |
|     :nudge-bottom="!menuTop ? '5' : '0'"
 | |
|     :top="menuTop"
 | |
|     :nudge-top="menuTop ? '5' : '0'"
 | |
|     allow-overflow
 | |
|     close-delay="125"
 | |
|     open-on-hover
 | |
|     content-class="d-print-none"
 | |
|   >
 | |
|     <template #activator="{ props }">
 | |
|       <v-btn
 | |
|         :class="{ 'rounded-circle': fab }"
 | |
|         :small="fab"
 | |
|         :color="color"
 | |
|         :icon="!fab"
 | |
|         dark
 | |
|         v-bind="props"
 | |
|         @click.prevent
 | |
|       >
 | |
|         <v-icon>{{ $globals.icons.dotsVertical }}</v-icon>
 | |
|       </v-btn>
 | |
|     </template>
 | |
|     <v-list density="compact">
 | |
|       <v-list-item
 | |
|         v-for="(item, index) in items"
 | |
|         :key="index"
 | |
|         @click="$emit(item.event)"
 | |
|       >
 | |
|         <template #prepend>
 | |
|           <v-icon :color="item.color ? item.color : undefined">
 | |
|             {{ item.icon }}
 | |
|           </v-icon>
 | |
|         </template>
 | |
|         <v-list-item-title>{{ item.title }}</v-list-item-title>
 | |
|       </v-list-item>
 | |
|     </v-list>
 | |
|   </v-menu>
 | |
| </template>
 | |
| 
 | |
| <script lang="ts">
 | |
| import type { ContextMenuItem } from "~/composables/use-context-presents";
 | |
| 
 | |
| export default defineNuxtComponent({
 | |
|   props: {
 | |
|     items: {
 | |
|       type: Array as () => ContextMenuItem[],
 | |
|       required: true,
 | |
|     },
 | |
|     menuTop: {
 | |
|       type: Boolean,
 | |
|       default: true,
 | |
|     },
 | |
|     fab: {
 | |
|       type: Boolean,
 | |
|       default: false,
 | |
|     },
 | |
|     color: {
 | |
|       type: String,
 | |
|       default: "grey-darken-2",
 | |
|     },
 | |
|   },
 | |
| });
 | |
| </script>
 |