[Vuejs]-Using for loop on nested object

0👍

ListView works quite differently from other components for better performance. It does not run a actual for loop here unlike v-for. Therefore it works only with Array so you will have to convert your object into an array before passing it to ListView.

👤Manoj

Leave a comment