vant库 van-image标签无法引用本地图片

如果把van-swipe-item写成for循环,内部的van-image标签无法使用本地图片,解决办法:
1.把van-image标签换成img,去掉for循环的使用


        
          
          

金会员

未开通

¥100购卡礼 X 专属特权

首单立减¥30

{{customInfo.truename||defaultName}}

金会员

{{endtime}}到期
{{customInfo.cardNo}}

银会员

未开通

¥50购卡礼 X 专属特权

首单立减¥30

{{customInfo.truename||defaultName}}

银会员

{{endtime}}到期
{{customInfo.cardNo}}

普通会员

长期有效

{{customInfo.truename||defaultName}}

普通会员

长期有效
{{customInfo.cardNo}}

2.img用src引用图片变量,在图片的链接外包上一层 require()


   
     
   
 
data () {
    return {
      isShow:false,
      pingan:"",
      times:"",
      content:{title: '填报须知',content: '欢迎ssss'},
      imageList: [
        require('../../../static/images/1.png'),
        require('../../../static/images/2.png'),
        require('../../../static/images/3.jpg'),
      ],
    active:1,
    notificationList:[]
    }
  }

参考:https://blog.csdn.net/qq_43542074/article/details/100537554

你可能感兴趣的:(vue)