
* feat: improve modal and drawer component documentation and fix known problems * chore: update ci
57 lines
1.1 KiB
Vue
57 lines
1.1 KiB
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
title?: string;
|
|
description?: string;
|
|
contentClass?: string;
|
|
showFooter?: boolean;
|
|
}
|
|
|
|
defineOptions({
|
|
name: 'Page',
|
|
});
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
contentClass: '',
|
|
description: '',
|
|
showFooter: false,
|
|
title: '',
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="relative h-full">
|
|
<div
|
|
v-if="description || $slots.description || title"
|
|
class="bg-card px-6 py-4"
|
|
>
|
|
<slot name="title">
|
|
<div
|
|
v-if="title"
|
|
class="mb-2 flex justify-between text-lg font-semibold"
|
|
>
|
|
{{ title }}
|
|
|
|
<slot name="extra"></slot>
|
|
</div>
|
|
</slot>
|
|
|
|
<slot name="description">
|
|
<p v-if="description" class="text-muted-foreground">
|
|
{{ description }}
|
|
</p>
|
|
</slot>
|
|
</div>
|
|
|
|
<div :class="contentClass" class="m-4">
|
|
<slot></slot>
|
|
</div>
|
|
|
|
<div
|
|
v-if="props.showFooter"
|
|
class="bg-card align-center absolute bottom-0 left-0 right-0 flex px-6 py-4"
|
|
>
|
|
<slot name="footer"></slot>
|
|
</div>
|
|
</div>
|
|
</template>
|