problem with owl carousel in vue when useing axios

Solutions on MaxInterview for problem with owl carousel in vue when useing axios by the best coders in the world

showing results for - "problem with owl carousel in vue when useing axios"
Gretchen
15 Mar 2016
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>