Vue-carousel: Question: is there any attribute to remove navigation dots?

Created on 26 Jul 2017  路  7Comments  路  Source: SSENSE/vue-carousel

I want remove just the navigation dots and use only the next and prev buttons.

question

Most helpful comment

You can pass :paginationEnabled="false" to your carousel component.

<carousel :autoplay="true" :autoplayTimeout="2000" :paginationEnabled="false">

All 7 comments

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

blackforestcode picture blackforestcode  路  4Comments

power-cut picture power-cut  路  5Comments

doginthehat picture doginthehat  路  3Comments

gomezmark picture gomezmark  路  5Comments

valeriy-efimov picture valeriy-efimov  路  5Comments