Hey there, I'm currently working with this template in my application:
<v-carousel cycle height="300" class="carousel" hide-delimiters>
<template v-slot:prev="{ on, attrs }">
<v-btn fab :color="theme.highlightColor" v-bind="attrs" v-on="on"
><v-icon>mdi-arrow-left</v-icon></v-btn
>
</template>
<template v-slot:next="{ on, attrs }">
<v-btn fab :color="theme.highlightColor" v-bind="attrs" v-on="on"
><v-icon>mdi-arrow-right</v-icon></v-btn
>
</template>
<v-carousel-item
v-for="i in 4"
:key="i"
:src="photo"
></v-carousel-item>
</v-carousel>
I've been trying to customize the arrows that control the slide changes. Following the Vuetify documentation, I used the prev and next slots for this purpose. However, despite implementing the code, the appearance of these arrows remains unchanged. Additionally, no errors are being displayed in the console. Can anyone advise me on what might be going wrong or how to properly customize carousel arrows?