赞
踩
<div class="litBox" v-for="(item, index) in itBoxData" :key="index"> <img class="imgg" :src="item.imgg" alt="" /> </div> ...... tBoxData: [ { index: 1, title11: '总数', num1: '345', imgg: require(`../../../assets/images/icon1.png`) }, { index: 2, title11: '人数', num1: '245', imgg: require(`../../../assets/images/icon2.png`) },
tBoxData: [
{
index: 1,
title11: '总数',
num1: '345',
imgg: new URL(`../../../assets/images/icon1.png`, import.meta.url).href
},
{
index: 2,
title11: '入人数',
num1: '245',
imgg: new URL(`../../../assets/images/icon2.png`, import.meta.url).href
},
]
<div class="litBox" v-for="(item, index) in itBoxData" :key="index">
<img class="imgg" :src="getImg('../../../assets/images/icon' + (index + 1) + '.png')" alt="" />
</div>
......
getImg(url) {
return new URL(url, import.meta.url).href
},
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。