mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-10-31 11:08:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			343 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			343 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <script setup>
 | |
| const emit = defineEmits(['click']);
 | |
| const handleClick = () => {
 | |
|   emit('click');
 | |
| };
 | |
| </script>
 | |
| 
 | |
| <template>
 | |
|   <div
 | |
|     class="relative flex flex-col w-full gap-3 px-6 py-5 shadow-sm group/cardLayout rounded-2xl bg-n-solid-1"
 | |
|     @click="handleClick"
 | |
|   >
 | |
|     <slot name="header" />
 | |
|     <slot name="footer" />
 | |
|   </div>
 | |
| </template>
 | 
