as shown in the figure, using the table layout, how to keep the total price to the right?
Code
<table>
<tr>
<th v-for="head in tableHeads" @click="changeOrderType(head)" :class="{active:head.active}">{{ head.label }}</th>
</tr>
<tr v-for="item in tableData" :key="item.period">
<td v-for="head in tableHeads">{{ item[head.key] }}</td>
</tr>
<tr>
<td align="right">:</td>
</tr>
</table>