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

View file

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