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 answers

0
thanksd On

You can do that with css:

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

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

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