mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-06-06 20:37:32 +00:00
23 lines
617 B
Vue
23 lines
617 B
Vue
<script setup lang="ts">
|
|
import SectionTitle from './SectionTitle.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="md:grid md:grid-cols-3 md:gap-6">
|
|
<SectionTitle>
|
|
<template #title>
|
|
<slot name="title" />
|
|
</template>
|
|
<template #description>
|
|
<slot name="description" />
|
|
</template>
|
|
</SectionTitle>
|
|
|
|
<div class="mt-5 md:mt-0 md:col-span-2">
|
|
<div class="px-4 py-5 sm:p-6 bg-card-background shadow sm:rounded-lg">
|
|
<slot name="content" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|