image
image copied to clipboard
fallbackImage will not work when with a own placeholder image
<nuxt-img
v-bind="$attrs"
placeholder="/images/loading.svg'"
@error="setFallbackImage"
/>
maybe:
mounted() {
if (this.nPlaceholder) {
...
img.onerror = () => {
this.$refs.img.src = this.nMainSrc
this.placeholderLoaded = true
}
}
...
}