У меня есть вложенное v-for
, я хочу получить индекс родительского элемента v-for
и использовать его внутри дочернего элемента v-for
<template v-for="(branch, index) in $store.state.agency.branch_users.users">
<table class="table" id="agency-contact-table" >
<thead>
<tr>
<th aria-colindex="1" class="">#</th>
<th aria-colindex="1" class="">Name</th>
</tr>
</thead>
<tbody>
<tr v-if="branch.role_users" v-for="(branch_users, index) in branch.role_users">
<td>{{$parent.$index}}</td>
<td>{{branch_users.user.first_name}} {{branch_users.user.last_name}}</td>
</tr>
</tbody>
</table>
</template>
Я пытался использовать $parent.$index
, ноэто все еще не работает.Это не показывает никаких ошибок, но также и никаких данных.Что я должен сделать, чтобы получить index
в моем родительском v-for?