[Vuejs]-Cannot show my pictures stored in folder using v-for vuejs

0👍

Give a try to

<img :src="require(`stored_images/${show_all_item.itemimage}`)" />

As shown here: https://stackoverflow.com/a/57567343/8816585

Also, keep in mind that the mustache syntax (aka {{ }}) is only for actual text, not for HTML attributes.


PS: assuming that you properly do have cms.png in itemimage.

Leave a comment