[Vuejs]-Cannot read properties of undefined (reading 'unobserve') in vue-slick-carousel with dynamic content

1👍

the component
wrapping it in a div and adding v-if="sliderConfigs.data" fixed my display problem

<div v-if="sliderConfigs.data">           
     <VueSlickCarousel/>    
</div>

Leave a comment