public/components/content/image.vue

11 lines
234 B
Vue
Raw Normal View History

2022-08-10 17:22:08 -04:00
<script setup lang="ts">
const { src } = defineProps<{ src: string }>();
</script>
<template>
<figure>
<img :src="`/images/posts/${src}`" />
<figcaption class="text-center"><Markdown /></figcaption>
</figure>
</template>