IT4C.dev/docs/.vuepress/components/CaptionedImage.vue
Ulf Gebhardt d6be15ce0d
feat(other): eslint & prettier (#302)
* eslint

* eslint fixes

* fix footer

* install prettier

* fix prettier
2025-03-20 20:11:16 +01:00

21 lines
304 B
Vue

<template>
<figure>
<img :src="src" alt="" :width="width" />
<figcaption>{{ caption }}</figcaption>
</figure>
</template>
<script setup lang="ts">
defineProps<{
src: string
caption: string
width: string
}>()
</script>
<style lang="scss">
figcaption {
font-style: italic;
}
</style>