Currently, I have a "v-carousel" containing multiple images and now I am looking to incorporate a parallax effect into it, similar to "v-parallax".
<v-carousel cycle height="600" hide-delimiter-background show-arrows-on-hover>
<v-carousel-item v-for="(slide, i) in slides" :key="i" eager>
<v-img :src="slide.src" height="100%"/>
</v-carousel-item>
</v-carousel>