Files
config.phundrak.com/.vitepress/components/ImgFigure.vue
T
phundrak 9f8932aae1
deploy / deploy (push) Failing after 7m20s
feat!: switch from Vuepress to Vitepress
2026-07-18 11:23:04 +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>