[Vuejs]-Vue.js generate img tag with v-for and auto src binding

1👍

Dynamic image source does not work with Vue.js. The reason is that the code goes into a bundler (webpack for example) and generates your bundle and your assets in function of what you wrote. If you want to have a dynamic image source in a v-for, you have to require all the images.

👤nook

Leave a comment