let thumbsSwiper1 = ref(null);
let thumbsSwiper2 = ref(null);
let thumbsSwiper3 = ref(null);
const setThumbsSwiper1 = (swiper) => {
thumbsSwiper1.value = swiper;
}
const setThumbsSwiper2 = (swiper) => {
thumbsSwiper2.value = swiper;
}
const setThumbsSwiper3 = (swiper) => {
thumbsSwiper3.value = swiper;
}
const thumbs = reactive([null, null, null]);
v-for="(swiper, i) in thumbs" @swiper="thumbs[i]=$event" :thumbs="{ swiper }"