[Vuejs]-Can't load images from relative path with Vue V-Lazy-Image Plugin

2👍

I noticed this was caused by bug in the component code:

if (this.$el.src === this.src) {

should be replaced by

if (this.$el.getAttribute('src') === this.src) {

I’ve sent pull request for this.

Leave a comment