pcpuma_unam_operador/components/admin/Errores.vue

23 lines
439 B
Vue
Raw Normal View History

2022-08-14 23:51:03 +00:00
<template>
<div class="panel">
<h6 class="panel-heading">Errores</h6>
<p v-for="(e, i) in errores" :key="i" class="panel-block">{{ e }}</p>
<div class="m-3">
<b-pagination :total="errores.length" :per-page="25" v-model="current" />
</div>
</div>
</template>
<script>
export default {
props: { errores: { type: Array, required: true } },
data() {
return { current: 1 }
},
}
</script>
<style></style>