blog/components/article/image.vue

12 lines
276 B
Vue
Raw Normal View History

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