24 lines
618 B
Vue
24 lines
618 B
Vue
<template>
|
|
<div>
|
|
<b-table class="box">
|
|
<b-table-column field="numeroCuenta" label="Número de cuenta" centered>
|
|
</b-table-column>
|
|
|
|
<b-table-column field="folio" label="Folio" centered> </b-table-column>
|
|
|
|
<b-table-column field="cantidad" label="Cantidad" centered>
|
|
</b-table-column>
|
|
|
|
<b-table-column field="fecha" label="Fecha" centered> </b-table-column>
|
|
|
|
<b-table-column field="ticket" label="Ticket" centered>
|
|
<b-button type="is-info">Ver ticket</b-button>
|
|
</b-table-column>
|
|
</b-table>
|
|
</div>
|
|
</template>
|
|
|
|
<script></script>
|
|
|
|
<style scoped></style>
|