mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-16 21:58:40 +00:00
11 lines
290 B
Vue
11 lines
290 B
Vue
|
<template>
|
||
|
<div class="border-b border-base-200 pb-3">
|
||
|
<h3 class="text-xl font-medium leading-4 text-base-content">
|
||
|
<slot />
|
||
|
</h3>
|
||
|
<p v-if="$slots.description" class="mt-2 max-w-4xl text-sm text-gray-500">
|
||
|
<slot name="description" />
|
||
|
</p>
|
||
|
</div>
|
||
|
</template>
|