The VSliderSwiper component is designed to create a slider using Swiper.js for enhanced performance and features.
| Prop | Type | Description |
|---|
| slides | Array | Array of slide objects to be displayed in the slider. |
| pagination | Boolean | Enable pagination controls. |
| navigation | Boolean | Enable navigation arrows. |
| Event | Description |
|---|
| slideChange | Emitted when the slide changes. |
| Slot Name | Description |
|---|
| default | Slot for custom content in the slider. |
vue<VSliderSwiper :slides="swiperSlides" :pagination="true" :navigation="true" @slideChange="onSlideChange" />