blog/components/article/image.vue

12 lines
317 B
Vue
Raw Normal View History

2024-10-19 22:46:11 +02:00
<template>
<nuxt-img :src="image" :width="width" :height="height" format="webp" alt="" :preload="true"
2024-10-19 22:46:11 +02:00
class="drop-shadow-2xl w-full rounded bg-zinc-900 ring-1 ring-white/10" />
</template>
<script lang="ts" setup>
defineProps<{
image: string;
width?: number;
height?: number;
2024-10-19 22:46:11 +02:00
}>();
</script>