i have table in vue component and one of the column have input also tr tag in v-for. how can i get all table value and submit in one time? i mean fill all inputs and save method run one time for all of them
<table >
<thead>
<tr>
<th>NO</th>
<th>Costumer Name</th>
<th>Total Amount</th>
<th>Total Paid</th>
<th>Total Refund</th>
<th>Actual Paid</th>
<th>Balance</th>
<th>New Pay</th>
</tr>
</thead>
<tbody>
<tr v-for="(passenger , index) in passengers">
<td >{{ index+1 }}</td>
<td >{{ passenger.name_ar }}</td>
<td >{{ passenger.payment }}</td>
<td >{{ passenger.payments+' KD' }}</td>
<td >{{ passenger.returned+' KD' }}</td>
<td >{{ passenger.payment.paid }}</td>
<td >{{ passenger.payment.total_amount }}</td>
<td >
<div class="form-group">
<div class="input-group">
<input type="text" class="form-control" :ref="passenger.id">
</div>
</div>
</td>
</tr>
</tbody>
</table>