I'm trying make my slides clickable using swiper with svelte
<Swiper
lazy={true}
on:swiper={onSwiper}
on:slideChange={() => console.log('slide change')}
on:progress={onProgress}
...
>
<SwiperSlide> <img on:click={doSmt} id='1' src="/src/lib/img/img_1.svg" alt=""/> </SwiperSlide>
<SwiperSlide> <img on:click={doSmt} id='2' src="/src/lib/img/img_2.svg" alt=""/> </SwiperSlide>
...
</Swiper>
but only the first slide works : can somebody tell me why is that ? Tx