You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is due to the vNode traversal which is done only once, because slots are not mounted yet at that time. The correct approach is to use provide inject (which is already being used for everything else) to register the slides to the carousel
The text was updated successfully, but these errors were encountered:
Using a carousel where the slides are coming from a slot is not working
https://stackblitz.com/edit/vue3-carousel-example-basic-vsybzp?file=src%2FCarousel.vue,src%2FApp.vue,src%2FSlides.vue
This is due to the vNode traversal which is done only once, because slots are not mounted yet at that time. The correct approach is to use provide inject (which is already being used for everything else) to register the slides to the carousel
The text was updated successfully, but these errors were encountered: