mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-28 04:01:10 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			622 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			622 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|   <div class="flex flex-col items-center justify-center mt-16">
 | |
|     <div class="flex flex-col items-center justify-center">
 | |
|       <slot></slot>
 | |
|     </div>
 | |
|     <div class="mt-2">
 | |
|       <label class="font-medium">{{ title }}</label>
 | |
|     </div>
 | |
|     <div class="mt-2">
 | |
|       <label class="text-gray-500">
 | |
|         {{ description }}
 | |
|       </label>
 | |
|     </div>
 | |
|     <div class="mt-6">
 | |
|       <slot name="actions" />
 | |
|     </div>
 | |
|   </div>
 | |
| </template>
 | |
| 
 | |
| <script setup>
 | |
| const props = defineProps({
 | |
|   title: {
 | |
|     type: String,
 | |
|     default: String,
 | |
|   },
 | |
|   description: {
 | |
|     type: String,
 | |
|     default: String,
 | |
|   },
 | |
| })
 | |
| </script>
 |