[Vuejs]-Loop through multi dimensional array of api response in vuejs

0👍

Try to loop over the sub array and not on global array

<div class="row"  v-for="reciepts in report">
</div>

Leave a comment