pcpuma_unam_operador/components/tablas/TablaProgramas.vue

31 lines
530 B
Vue
Raw Normal View History

2022-07-25 12:49:16 +00:00
<template>
<b-table
class="mb-6"
:data="data"
:loading="isLoadingTable"
:per-page="25"
:total="total"
hoverable
paginated
striped
>
</b-table>
</template>
<script>
export default {
components: {},
props: {
data: { type: Array, required: true, default: () => [] },
isLoadingTable: { type: Boolean, required: true, default: false },
total: { type: Number, required: true, default: 0 },
},
data() {
return {}
},
methods: {},
watch: {},
created() {},
}
</script>