> For the complete documentation index, see [llms.txt](https://matteo-gabriele.gitbook.io/vue-progressive-image/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://matteo-gabriele.gitbook.io/vue-progressive-image/fallback-image.md).

# Fallback image

The fallback image will help in scenarios when the browser cannot load the provided image. Instead of an empty block, it is possible to display a more appropriate image: a 404 image, an access denied image, or a more generic error fallback image.

```html
<template>
  <ProgressiveImage
    src="https://some_url_that_will_fail/image.jpg"
    fallback-src="https://picsum.photos/id/1062/1980/1080"
  />
</template>
```
