More lasy loading
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 41s

This commit is contained in:
2026-04-13 15:25:16 +02:00
parent 482fbffece
commit 89f4e41df8
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<!-- components/content/ProseImg.vue -->
<template>
<NuxtImg
:src="src"
:alt="alt"
format="webp"
loading="lazy"
/>
</template>
<script setup>
defineProps({
src: String,
alt: String
})
</script>