17 lines
369 B
Vue
17 lines
369 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="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>
|