When trying to use the v-lazy-image plugin for my page banner with local image files, it does not seem to work.
<v-lazy-image
srcset="../../../assets/images/banners/Small-Banner.svg 320w, ../../../assets/images/banners/Big-Banner.svg 480w"
sizes="(max-width: 320px) 280px, 440px"
src="../../../assets/images/banners/Big-Banner.svg"
/>
Interestingly, it works fine when using external links as shown below:
<v-lazy-image
srcset="https://cdn.pixabay.com/photo/2017/03/25/17/55/color-2174045_960_720.png 320w, https://blah/blah.png 480w"
sizes="(max-width: 320px) 280px, 440px"
src="https://blah/blah.png"
/>