-1👍
You do not need 3 loops:
<!-- 1st LOOP on main object -->
<template v-for="object in objects" v-if="object.visible">
<!-- 2nd LOOP on array -->
<template v-for="children in object.children">
{{ children | json }}
</template>
</template>
- [Vuejs]-Wait x seconds for new emitted value before triggering a function
- [Vuejs]-Elasticsearch Fluid research
Source:stackexchange.com