public/components/content/image.vue
2022-08-10 18:05:40 -04:00

16 lines
367 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"><Markdown /></figcaption>
</figure>
</template>