I have a long list of images, but want to display only 5 of them
Here's the code I've tried
<ul>
<li v-for="index in 5" :key="index">
<img v-bind:src="image.ImageUrl[index]" />
</li>
</ul>
If the use the follow it works, but then it displays all the images
<ul>
<li v-for="image in Images">
<img v-bind:src="image.ImageUrl" />
</li>
</ul>