I am trying to show images through v-for, but they do not appear.
<div v-for="(n, i) in images" :key="i">
<v-img :src="{n}"></v-img>
</div>
...
images: [
'../assets/thirdSection/Olivia.png',
'../assets/thirdSection/Olivia.png',
'../assets/thirdSection/luiz.png',
]