16 lines
363 B
Vue
16 lines
363 B
Vue
<script setup lang="ts">
|
|
const { src } = defineProps<{ src: string }>();
|
|
|
|
const imgSrc =
|
|
src.startsWith("http://") || src.startsWith("https://")
|
|
? src
|
|
: `/images/posts/${src}`;
|
|
</script>
|
|
|
|
<template>
|
|
<figure class="flex flex-col items-center">
|
|
<img :src="imgSrc" />
|
|
<figcaption class="text-center"><slot /></figcaption>
|
|
</figure>
|
|
</template>
|