Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

vuejs v-for array index

<!-- To gain access to the array index: -->
<ul>
    <li v-for="(game, index) in games"></li>
</ul>
<!--
	You only want the index in specific cases. Use `:key` as
	standard. See the other greps.
-->
Source by forum.vuejs.org #
 
PREVIOUS NEXT
Tagged: #vuejs #array #index
ADD COMMENT
Topic
Name
3+2 =