Events
<script setup>
const onSuccess = () => {
// done!
}
const onError = () => {
// ops!
}
</script>
<template>
<ProgressiveImage
@success="onSuccess"
@error="onError"
src="https://picsum.photos/id/1080/1980/1080"
/>
</template>gtnk