vue属性绑定加载图片不成功

参考链接:
https://blog.csdn.net/cxx4220/article/details/103683518
我的解决办法:

 <div class="cardBox">
      <template v-for="(item,index) in renderList[current].menuList">
        <div class="item" :key="index" @click="itemClick(item)">
          <img :src="require('../'+item.imageRef+'.png')" alt="">
          <span>{
    
    {
    
    item.menuName}}</span>
        </div>
      </template>
    </div>

猜你喜欢

转载自blog.csdn.net/weixin_42349568/article/details/113601943