wf4/app/components/Card.vue
2025-06-05 07:50:50 +02:00

15 lines
No EOL
277 B
Vue

<template>
<article class="z-2 card flex-col gap-sm">
<component :is="titleTag ?? 'h3'">{{ title }}</component>
<slot />
</article>
</template>
<script setup lang="ts">
type Props = {
title : string
titleTag ?: 'strong' | 'h3'
}
defineProps<Props>()
</script>