Skip to content

Commit

Permalink
fix(VCarouselItem): add missing class prop (#19649)
Browse files Browse the repository at this point in the history
fixes #19630
  • Loading branch information
SonTT19 authored Apr 22, 2024
1 parent edd311f commit 635946c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/vuetify/src/components/VCarousel/VCarouselItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ export const VCarouselItem = genericComponent<VImgSlots>()({

return (
<VWindowItem
class="v-carousel-item"
class={[
'v-carousel-item',
props.class,
]}
{ ...windowItemProps }
>
<VImg
Expand Down

0 comments on commit 635946c

Please sign in to comment.