1
0

22 lines
322 B
Vue
Raw Normal View History

2023-02-26 19:20:43 +01:00
<template>
2024-06-21 08:27:34 +02:00
<figure>
<img :alt="alt" :src="src" />
<figcaption><slot></slot></figcaption>
</figure>
2023-02-26 19:20:43 +01:00
</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>