23 lines
597 B
Vue
23 lines
597 B
Vue
|
<script setup>
|
||
|
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-white shadow sm:rounded-lg">
|
||
|
<slot name="content" />
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|