I want remove just the navigation dots and use only the next and prev buttons.
The only way I found is with css
.VueCarousel-pagination {
display: none;
}
You can pass :paginationEnabled="false" to your carousel component.
<carousel :autoplay="true" :autoplayTimeout="2000" :paginationEnabled="false">
https://ssense.github.io/vue-carousel/api/#paginationEnabled
(deep link not actually working at present)
<carousel :paginationSize=0>
..
</carousel>
@Developerlopez were any of these answers able to help you out?
Does anyone know how can I disable the title being appeared when I hovered over the dots?
:paginationEnabled="false" removes the whole pagination from the carousel but I only want to stop the title being shown when hovered over the pagination dots. I looked at the docs but have not found the solution.
Most helpful comment
You can pass
:paginationEnabled="false"to yourcarouselcomponent.