mirror of
https://github.com/IT4Change/IT4C.dev.git
synced 2025-12-12 17:05:50 +00:00
21 lines
304 B
Vue
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>
|