'How to make react swiper slide in vertical direction

i want to make home page like where i can swipe one post at a time in moile view. I have tried react swiper but react swiper is swipping post horizontally i want to swipe post vertically any idea how to make this ??



Solution 1:[1]

you can give it direction, just add direction prop like this

  <Swiper
            // install Swiper modules
            slidesPerView="1"
            mousewheel={true}
            direction="vertical"
            modules={[Pagination]}
            pagination={{ clickable: true }}
            scrollbar={{ draggable: true }}
        >

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 yechu