Alineación de texto en tabla de bonos

This commit is contained in:
Alejandro Tasistro 2023-09-10 17:07:41 -03:00
parent 80fbbd510d
commit 9634f51054
1 changed files with 2 additions and 2 deletions

View File

@ -22,14 +22,14 @@
<td v-for="(bono,j) in bp.bonos" :key="j">
{{ bono.cantidad }}
</td>
<td> {{ bp.total }} </td>
<td class="has-text-right"> {{ bp.total }} </td>
</tr>
</tbody>
<tfoot>
<tr>
<th></th>
<th :colspan="bonos.length">Total bonos</th>
<th>$ {{ totalBonos }}</th>
<th class="has-text-right">$ {{ totalBonos }}</th>
</tr>
</tfoot>
</table>