How to use vue-lazyload properly with nuxt?
Nuxt uses ~assets syntax or require('...') method to implement image urls. This means that these two variants both loading images BEFORE vue-lazyload starting its work.
After images all are requested and downloaded by browser vue-lazyload know their urls and start to show them lazily. But it is already make no sense((
How to use vue-lazyload with nuxt or how avoid ~assets or require(...)preloading?