2021-09-16 02:00:52 +08:00
|
|
|
<script>
|
|
|
|
|
export let title;
|
|
|
|
|
</script>
|
|
|
|
|
|
2021-09-17 23:18:06 +08:00
|
|
|
<div class="card">
|
2021-12-28 01:06:01 +01:00
|
|
|
{#if title}
|
|
|
|
|
<h1 class="card-header">{title}</h1>
|
|
|
|
|
{/if}
|
2021-09-17 23:18:06 +08:00
|
|
|
<slot />
|
2021-09-16 02:00:52 +08:00
|
|
|
</div>
|