Files

24 lines
470 B
Vue
Raw Permalink Normal View History

2020-12-23 03:58:15 -06:00
<template>
2021-11-29 01:15:23 -06:00
<div class="mb-5">
<h3 class="title" v-if="alumno.Status.idStatus === 1">
2021-12-06 14:59:19 -06:00
Confirmar el pre-registro del alumno
2020-12-23 03:58:15 -06:00
</h3>
2021-08-04 18:25:24 -05:00
2021-12-06 14:59:19 -06:00
<h3 class="title" v-if="alumno.Status.idStatus === 4">Término</h3>
2021-08-04 18:25:24 -05:00
2021-11-29 01:15:23 -06:00
<h3 class="title" v-if="alumno.Status.idStatus === 5">
2021-12-06 14:59:19 -06:00
Validar el término del alumno
2020-12-23 03:58:15 -06:00
</h3>
</div>
</template>
<script>
export default {
props: {
2021-11-29 01:15:23 -06:00
alumno: { type: Object, required: true },
2021-01-05 15:14:10 -06:00
},
2021-05-13 14:22:56 -05:00
}
2020-12-23 03:58:15 -06:00
</script>
2021-11-24 22:05:37 -06:00
<style scoped></style>