All checks were successful
Build and Deploy Nuxt / build (push) Successful in 41s
16 lines
218 B
Vue
16 lines
218 B
Vue
<!-- components/content/ProseImg.vue -->
|
|
<template>
|
|
<NuxtImg
|
|
:src="src"
|
|
:alt="alt"
|
|
format="webp"
|
|
loading="lazy"
|
|
/>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineProps({
|
|
src: String,
|
|
alt: String
|
|
})
|
|
</script> |