Skip to content

Commit

Permalink
fix(components): [carousel] missing root ref (#10312)
Browse files Browse the repository at this point in the history
  • Loading branch information
holazz committed Oct 30, 2022
1 parent 48f837b commit 93f2a1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/components/carousel/src/carousel.vue
Expand Up @@ -77,6 +77,7 @@ defineOptions({
const props = defineProps(carouselProps)
const emit = defineEmits(carouselEmits)
const {
root,
activeIndex,
arrowDisplay,
hasLabel,
Expand Down
1 change: 1 addition & 0 deletions packages/components/carousel/src/use-carousel.ts
Expand Up @@ -256,6 +256,7 @@ export const useCarousel = (
})

return {
root,
activeIndex,
arrowDisplay,
hasLabel,
Expand Down

0 comments on commit 93f2a1d

Please sign in to comment.