Files
config.phundrak.com/.vitepress/components/ImgFigure.vue
T

22 lines
322 B
Vue
Raw Normal View History

2026-06-24 10:57:57 +02:00
<template>
<figure>
<img :alt="alt" :src="src" />
<figcaption><slot></slot></figcaption>
</figure>
</template>
<script setup lang="ts">
const props = defineProps<{
src: string;
alt?: string;
}>();
</script>
<style>
figcaption {
text-align: center;
margin-top: 1rem;
margin-bottom: 1rem;
}
</style>