My program is showing an error message, even though the files are correct. Can you help identify the issue?
:src="http://marketplus.io/${item.data.upload[0].link}"
<div class="product-card">
<div class="product-card-top">
<NuxtLink :to="`/product/${item.id}`">
<img v-if="item.data"
class="w-100"
:src="`http://marketplus.io/${item.data.upload[0].link}`"
alt="product image"
/>
</NuxtLink>
<div class="product-card-actions">
<button class="add-to-wishlist">
<i class="fas fa-heart"></i>
</button>
<button class="add-to-compare">
<i class="fas fa-random"></i>
</button>
</div>
</div>