forked from mirrors/homebox
5bbb969763
* remove repo for document tokens * remove schema for doc tokens * fix id template and generate cmd * schema updates * code gen * bump dependencies * fix broken migrations + add maintenance entry type * spelling * remove debug logger * implement repository layer * routes * API client * wip: maintenance log * remove depreciated call
16 lines
501 B
Vue
16 lines
501 B
Vue
<template>
|
|
<div class="card bg-base-100 shadow-xl sm:rounded-lg">
|
|
<div v-if="$slots.title" class="px-4 py-5 sm:px-6">
|
|
<h3 class="text-lg font-medium leading-6">
|
|
<slot name="title"></slot>
|
|
</h3>
|
|
<p v-if="$slots.subtitle" class="mt-1 max-w-2xl text-sm text-gray-500">
|
|
<slot name="subtitle"></slot>
|
|
</p>
|
|
<template v-if="$slots['title-actions']">
|
|
<slot name="title-actions"></slot>
|
|
</template>
|
|
</div>
|
|
<slot />
|
|
</div>
|
|
</template>
|