0๐
โ
You need to bind the objectโs property without brackets e.g
<div class="image"><img :src="portfolio.thumbnail.src" :alt="portfolio.thumbnail.alt" class="img-fluid">
0๐
I think your code should be like this.
<div v-for="(portfolio,index) in portfolios" :key="index" >
<img :src="require(`img/portfolio-${index+1}.jpg`)" :alt="portfolio.thumbnail.alt" />
</div>
Source:stackexchange.com