I am using a v-for to load data on cards. The image is not showing up and not sure why.
I though :src = "'item.img'" or :src = "{{item.img}}" would work, but neither are working.
Here is my code
<div v-for="(item, index) in basicData" :key="index">
<transition >
<div v-if="index >= start && index < end" >
<div >
<h5 >{{item.title}}</h5>
<img
:src="'item.img'"
:alt="'item.img'"
style="margin: 20px 5px"
/>
<p >Some quick example text.</p>
</div>
</div>
</transition>
and here is the screen shot
When I hard code src="../assets/featured/pizzaOne.jpeg"
the image appears.
CodePudding user response:
You can create method or computed property:
methods() {
getImage(imagePath) {
return require(imagePath);
}
}
Then in template call that method:
<img
:src="getImage(item.img)"
:alt="item.img"
style="margin: 20px 5px"
/>

