mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-04 06:23:17 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			413 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			413 B
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <div class="flex flex-wrap justify-between">
 | 
						|
    <div>
 | 
						|
      <h3 class="text-2xl font-bold text-left text-black">
 | 
						|
        {{ title }}
 | 
						|
      </h3>
 | 
						|
      <slot />
 | 
						|
    </div>
 | 
						|
    <div class="flex items-center">
 | 
						|
      <slot name="actions" />
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
</template>
 | 
						|
 | 
						|
<script setup>
 | 
						|
const props = defineProps({
 | 
						|
  title: {
 | 
						|
    type: [String],
 | 
						|
    default: '',
 | 
						|
    required: true,
 | 
						|
  },
 | 
						|
})
 | 
						|
</script>
 |