Files
conlang.phundrak.com/.vitepress/components/ImgFigure.vue
T
phundrak 53bd794a5c
deploy / deploy (push) Successful in 4m46s
chore: switch from vuepress to vitepress
2026-07-11 17:12:27 +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>