Files
config.phundrak.com/.vitepress/components/ImgFigure.vue
T
phundrak a46efb3e3f
deploy / deploy (push) Successful in 4m45s
feat!: switch from Vuepress to Vitepress
2026-07-18 12:12:14 +02:00

22 lines
322 B
Vue

<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>