My data is also fetched from the server. My issue was that the slides are initially invisible unless I make it rerender somehow (like resizing the browser/revisiting the route). I set the length of my array as key of the component and it works now..
<!-- I'm using a container component -->
<room-carousel :listData="roomList" :key="roomList.length"></room-carousel>
My data is also fetched from the server. My issue was that the slides are initially invisible unless I make it rerender somehow (like resizing the browser/revisiting the route). I set the length of my array as key of the component and it works now..