vuetify carousel: How to hide the bottom control panel

2.2k Views Asked by At

I need to use v-carousel without the bottom control panel. It's useless when number of images more than 20. Is it possible to hide it?

2

There are 2 best solutions below

0
On

You can do that with css:

.carousel .carousel__controls { display: none; }
0
On

You just need to add the hide-delimiters prop. You can find all carousel props here: VuetifyJS API

<v-carousel hide-delimiters>
[...]