mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-04 04:57:51 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			451 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			451 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <li class="inline-flex list-none" :tabindex="null" :aria-disabled="true">
 | 
						|
    <span
 | 
						|
      class="text-xs text-slate-600 dark:text-slate-100 mt-1 font-medium w-full block text-left rtl:text-right whitespace-nowrap p-2"
 | 
						|
    >
 | 
						|
      {{ title }}
 | 
						|
    </span>
 | 
						|
    <slot />
 | 
						|
  </li>
 | 
						|
</template>
 | 
						|
<script>
 | 
						|
export default {
 | 
						|
  componentName: 'WootDropdownMenu',
 | 
						|
  props: {
 | 
						|
    title: {
 | 
						|
      type: String,
 | 
						|
      default: '',
 | 
						|
    },
 | 
						|
  },
 | 
						|
};
 | 
						|
</script>
 |