I am facing an issue while populating my table with data from a list. Currently, the table cells are being filled from left to right, but I want them to be populated from top to bottom. Unfortunately, I am unsure how to achieve this using a list method.
<template>
<table>
<tr>
<td>Header 1</td>
<td>Header 2</td>
<td>Header 3</td>
<td>Header 4</td>
</tr>
<tr>
<template v-for='job in list1'>
<td>{{ job.id }}</td>
</template>
</tr>
<tr>
<template v-for='job in list2'>
<td>{{ job.id }}</td>
</template>
</tr>
<tr>
<template v-for='job in list3'>
<td>{{ job.id }}</td>
</template>
</tr>
</table>
</template>