How to create list index from array using framework7+vue

How can I generate a list index from my set of array ?. Please see the picture attached

Your response will be highly appreciated

Dont understand what you need.

maybe this helps

<div v-for="(value, key, index) in object">
  {{ index }}. {{ key }}: {{ value }}
</div>

Doc:

I got an idea from your solution and I already fixed the problem. By the way I used a nested for loop :slight_smile: