[Vuejs]-Binding dynamic img in vuejs does not work for me

3👍

Change <img v-bind:src="PictureURL" /> to <img v-bind:src="PictureUrl" />, so that you match the data item name. Vue should be giving you an error in the console about this.

0👍

https://jsfiddle.net/kch7sfda/

Example here.

You can try to:
1. add v-if to img element
2. rename PictureUrl to pictureUrl (first lowercase letter)

Leave a comment