ismail9k / vue3-carousel

Vue 3 carousel component
https://ismail9k.github.io/vue3-carousel/
MIT License
654 stars 162 forks source link

How to hide the pagination dots? #369

Open westwashin opened 2 months ago

westwashin commented 2 months ago

i've recently working on a product display menu

`

` i already try to make it false but it doesn work. anyone have idea?
EtiennePASSOT commented 2 months ago

Do you have more information about your code ?

With the example, I don't have navigation

<script>
import { Carousel, Navigation, Slide } from 'vue3-carousel'
import 'vue3-carousel/dist/carousel.css'
</script>

<template>
  <Carousel :items-to-show="1">
    <Slide v-for="slide in 10" :key="slide">
      {{ slide }}
    </Slide>

    <template #addons>
      <Navigation />
    </template>
  </Carousel>
</template>