ismail9k / vue3-carousel

Vue 3 carousel component
https://ismail9k.github.io/vue3-carousel/
MIT License
675 stars 167 forks source link

Carousel throws an error when `v-if` is used on a slide #248

Closed juliadok closed 1 year ago

juliadok commented 1 year ago

Carousel throws an error when v-if is used on a slide:

slideElements.forEach is not a function

Example:

<Carousel>
  <Slide v-if="false" key="1">1</Slide>
  <Slide v-if="true" key="2">2</Slide>
  <Slide key="3">3</Slide>
</Carousel>

Error:

Screenshot 2022-11-10 at 10 47 44