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
Hi, I want to use this slider where the slide content is another component. I tried passing it this way and it does render what's inside the child component, but the slider doesn't work and throws TypeError: "this.$slots.default is undefined"
Here's my code: <vue-glide> <vue-glide-slide v-for="char in chars" :key="char.id"> <component :is="child_component" v-bind:key="char.id" v-bind:char="char" v-bind:activeChar="activeChar" ></component> </vue-glide-slide> </vue-glide>
The text was updated successfully, but these errors were encountered:
Hi, I want to use this slider where the slide content is another component. I tried passing it this way and it does render what's inside the child component, but the slider doesn't work and throws TypeError: "this.$slots.default is undefined"
Here's my code:
<vue-glide> <vue-glide-slide v-for="char in chars" :key="char.id"> <component :is="child_component" v-bind:key="char.id" v-bind:char="char" v-bind:activeChar="activeChar" ></component> </vue-glide-slide> </vue-glide>
The text was updated successfully, but these errors were encountered: