I have a super weird problem here, I want to use a for-loop (using v-for) for images inside /static.
Strangely, using v-img only works if it's used in conjunction with img. I'd like to strictly use v-img for easy formatting and continuance.
Here is my code(s) and a screenshot for each example:
Just using v-img
<div v-for="(image, index) in images" :key="index"> <v-img :src="image.src"></v-img> </div> Just using img
<div v-for="(image, index) in images" :key="index"> <img class="image" :src="image.src" :alt="image.alt"> </div> Images are displayed with standard img properties. 
Using both v-img and img
<div v-for="(image, index) in images" :key="index"> <v-img :src="image.src"></v-img> <img class="image" :src="image.src" :alt="image.alt"> </div> 

imagescoming from?imagesobject indata