Skip to content

Commit

Permalink
fix(VCarouselItem): pass through placeholder slot
Browse files Browse the repository at this point in the history
fixes #8452
  • Loading branch information
johnleider committed Aug 30, 2019
1 parent df9e3ff commit 56edbdc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/vuetify/src/components/VCarousel/VCarouselItem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ export default baseMixins.extend({
height: this.windowGroup.internalHeight,
},
on: this.$listeners,
}, this.$slots.default),
}, [
this.$slots.default,
this.$createElement('template', {
slot: 'placeholder',
}, this.$slots.placeholder),
]),
]
},
genWindowItem () {
Expand Down

0 comments on commit 56edbdc

Please sign in to comment.