wf4/app/components/Card.vue
webfussel 91b59e4ebe add: basic blog layout
Basic Blog Layout to work on
2025-07-11 13:32:59 +02:00

15 lines
No EOL
284 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' | 'h2'
}
defineProps<Props>()
</script>