[Vuejs]-Show parent when child image has lazyloaded

0👍

You can use loading option (src of the image while loading).
like this:

Vue.use(VueLazyload, {
    preLoad: 1.3,
    loading: 'dist/loading.gif',
    attempt: 1,
  });

And Also read the github page for more options.

Leave a comment