上传者: 38676500
|
上传时间: 2021-10-29 13:37:12
|
文件大小: 36KB
|
文件类型: -
长话短说,在vue(2.5.x)中使用swiper(4.3.3),轮播加了autoplay和loop、observer、observeParents等参数还是很诡异的无法循环轮播;
那么可以这样写代码试试:
this.$api.queryImages().then((resp) => {
if(resp && resp.data.resultCode == 0){
this.swiperImgs = resp.data.data;
this.$nextTick(() => { // 下一个UI帧再初始化swiper
this.initSwiper();
});
}
}