<div v-for="item in items">
<img :src="'@/assets/images/${ item.namefile }.jpg'">
</div>
export default {
data() {
return {
items: [
{ namefile: 'a1' },
{ namefile: 'a2' },
{ namefile: 'a3' },
{ namefile: 'a4' },
{ namefile: 'a5' },
{ namefile: 'a6' },
{ namefile: 'a7' },
{ namefile: 'a8' },
{ namefile: 'a9' }
]
}
}
}