vuetifyjs / vuetify

🐉 Vue Component Framework
https://vuetifyjs.com
MIT License
39.06k stars 6.91k forks source link

fix(VCarouselItem): fix class props #19649

Closed SonTT19 closed 1 week ago

SonTT19 commented 2 weeks ago

Description

fixes #19630

Markup:

<template>
  <v-app>
    <v-container>
      <v-carousel>
        <v-carousel-item
          class="docks"
          src="https://cdn.vuetifyjs.com/images/cards/docks.jpg"
          cover
        ></v-carousel-item>

        <v-carousel-item
          class="hotel"
          src="https://cdn.vuetifyjs.com/images/cards/hotel.jpg"
          cover
        ></v-carousel-item>

        <v-carousel-item
          class="sunshine"
          src="https://cdn.vuetifyjs.com/images/cards/sunshine.jpg"
          cover
        ></v-carousel-item>
      </v-carousel>
    </v-container>
  </v-app>
</template>