Hi! I wanted to produce a table (see sample table 1for reference). I'm using this code:
<table>
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td rowspan="3">test</td>
<tr>
<td>test 1</td>
<td>test 1</td>
</tr>
<tr>
<td>test 1</td>
<td>test 1</td>
</tr>
</tr>
</table>
But once I use a reactive data like <td>{{country}}</td>
to populate the rows, the rows is collapsing.
Can someone please help me with this. By the way I'm using Vue 3