frontend/app/components/preferences/page.vue

14 lines
261 B
Vue
Raw Normal View History

<template>
<section class="gap-4 flex flex-col">
2025-12-09 22:32:22 +01:00
<h2 class="text-xl font-bold tracking-tight">{{ title }}</h2>
2026-01-09 21:47:12 +01:00
<slot />
</section>
</template>
<script lang="ts" setup>
const { title } = defineProps<{
title: string;
}>();
</script>