··· javascript
<template>
<div class="container">
<table border="1">
<thead>
<tr>
<th>姓名</th>
<th>年龄</th>
<th>性别</th>
<th>电话</th>
<th>地址</th>
</tr>
</thead>
<tbody>
<tr>
<td>测试姓名</td>
<td>30</td>
<td>男</td>
<td>123456789</td>
<td>测试地址</td>
</tr>
</tbody>
</table>
</div>
</template>
···
显示结果如图所以