I have a collection of 100 images from 1.png to 100.png stored in my assets folder. I am looking to dynamically display them using v-for without having to manually specify each individual image URL.
<div v-for="n in 100">
<img :src="`../assets/photos/${n}.png`">
</div>
What is the best approach for handling the dynamic image URLs (1.png, 2.png...)? Would it be wise to include them in the data object?