mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
24 lines
429 B
Vue
24 lines
429 B
Vue
<template>
|
|
<div class="flex flex-wrap justify-between">
|
|
<div>
|
|
<h3 class="text-2xl font-bold text-left text-black dark:text-white">
|
|
{{ 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>
|