Vue Slick Carousel

I have slider with VueSlickCarousel.

I want to be able to manually change the pagination during the scrolling, not after it.

  data() {
    return {
      sliderConfig: {
        arrows: false,
        dots: true,
        infinite: true,
        slidesToShow: 2,
        slidesToScroll: 1,
        responsive: [
          {
            breakpoint: 1023,
            settings: {
              slidesToShow: 1,
              slidesToScroll: 1,
            }
          },
        ],
        autoplay: true,
        autoplaySpeed: 2000,
        speed: 6000,
        cssEase: 'ease',
      }
    }
  }