mirror of
https://github.com/versia-pub/blog.git
synced 2025-12-06 08:48:18 +01:00
16 lines
503 B
Vue
16 lines
503 B
Vue
<template>
|
|
<figure class="space-y-3 w-full">
|
|
<nuxt-img :src="image" :width="width" :height="height" format="webp" alt="" :preload="true"
|
|
class="drop-shadow-2xl w-full rounded bg-zinc-900 ring-1 ring-white/10" />
|
|
<figcaption v-if="caption" class="text-center text-sm text-gray-400">{{ caption }}</figcaption>
|
|
</figure>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps<{
|
|
image: string;
|
|
width?: number;
|
|
height?: number;
|
|
caption?: string;
|
|
}>();
|
|
</script> |