[Vuejs]-Vue v-for retrieve index of current item

0👍

(Posted solution on behalf of the question author).

Using v-for="(item, ndx) in items" Then using ndx as the index of the current item.

👤halfer

Leave a comment