mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div
 | 
						|
    class="menu-with-submenu min-width-calc w-full p-1 flex items-center h-7 rounded-md relative bg-white dark:bg-slate-700 justify-between hover:bg-woot-75 cursor-pointer dark:hover:bg-slate-800"
 | 
						|
    :class="!subMenuAvailable ? 'opacity-50 cursor-not-allowed' : ''"
 | 
						|
  >
 | 
						|
    <div class="flex items-center">
 | 
						|
      <fluent-icon :icon="option.icon" size="14" class="menu-icon" />
 | 
						|
      <p class="my-0 mx-2 text-xs">{{ option.label }}</p>
 | 
						|
    </div>
 | 
						|
    <fluent-icon icon="chevron-right" size="12" />
 | 
						|
    <div
 | 
						|
      v-if="subMenuAvailable"
 | 
						|
      class="submenu bg-white dark:bg-slate-700 p-1 shadow-lg rounded-md absolute left-full top-0 hidden min-h-min max-h-[15rem] overflow-y-auto overflow-x-hidden cursor-pointer"
 | 
						|
    >
 | 
						|
      <slot />
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  props: {
 | 
						|
    option: {
 | 
						|
      type: Object,
 | 
						|
      default: () => {},
 | 
						|
    },
 | 
						|
    subMenuAvailable: {
 | 
						|
      type: Boolean,
 | 
						|
      default: true,
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 | 
						|
 | 
						|
<style scoped lang="scss">
 | 
						|
.menu-with-submenu {
 | 
						|
  min-width: calc(6.25rem * 2);
 | 
						|
 | 
						|
  &:hover {
 | 
						|
    .submenu {
 | 
						|
      @apply block;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
</style>
 |