1//you just need to make sure that your carousel dont get load befor your data send
2
3<template>
4 <div v-if="products.length > 0">
5 <carousel :items="4">
6 <img v-for="product in products" :src="product.imageUrl">
7 </carousel>
8 </div>
9</template>