Files
nuxt/app/components/content/BlogImage.vue
2025-05-08 19:18:45 -04:00

18 lines
274 B
Vue

<script setup lang="ts">
const { src, alt } = defineProps<{
src: string;
alt?: string;
}>();
</script>
<template>
<NuxtImg
v-if="src"
placeholder
sizes="sm:100vw md:70vw"
class="w-full"
:src="src"
:alt="alt"
loading="lazy"
/>
</template>