<table style="cursor:default">
<tbody>
<tr v-for="j in status_data.length/2">
<td class="w3-border w3-border-black w3-round-large w3-center" :bgcolor="getColor(status_data[j-1].MESSAGE_CODE)">{{ status_data[j-1].PROCESS_CODE }}</td>
<td class="w3-border w3-border-black w3-round-large w3-center" :bgcolor="getColor(status_data[j].MESSAGE_CODE)">{{ status_data[j].PROCESS_CODE }}</td>
</tr>
</tbody>
</table>
how can i control value of j in above code , i want it is like
for i in status_data.length/2 do action i=i+2
i want to increment value by 2 in every iteration .