I have a swiper with images in the array "ktv", but I want to display 3 images one below the other, before the next "swiperSlide" begins. Any solutions for this ngFor?
<swiper [config]="pageKtvSlideOpts" #swiper>
<ng-template *ngFor="let k of ktv" swiperSlide>
<img [src]="k.img">
</ng-template>
</swiper>