v-img
v-img copied to clipboard
v-img element missing src parameter
Has anyone encountered this situation?
I had a similar error when binding the src attribute to a variable. Was binding it like this cause i set dataurl to the field later.
<img v-img :src="fileUrl">
private fileUrl: string = null;
It disappeared after change initial value to empty string.
<img v-img :src="fileUrl">
private fileUrl: string = '';
Remove lazy loading on image.