mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 00:18:20 +01:00
16 lines
283 B
Vue
16 lines
283 B
Vue
<template>
|
|
<section class="gap-4 flex flex-col">
|
|
<h2 class="text-xl font-bold tracking-tight">
|
|
{{ title }}
|
|
</h2>
|
|
|
|
<slot />
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { title } = defineProps<{
|
|
title: string;
|
|
}>();
|
|
</script>
|