When it comes to using webp images instead of jpg or png, some browsers may not support the webp format. In such cases, we can use the html tag < source > as demonstrated below, ensuring that at least a jpg image is displayed:
<picture>
<source srcset="good.webp" type="image/webp">
<img src="fallback.jpg" alt="">
</picture>
However, I'm unsure of how to implement this same method in the < v-img > component of Vuetify.js. Does anyone know how to incorporate the < source > tag within < v-img >, or have any alternative methods to achieve the desired result? (displaying webp image first followed by jpg)