26 lines
539 B
Vue
26 lines
539 B
Vue
<template>
|
|
<div class="mb-5">
|
|
<h3 class="title" v-if="alumno.Status.idStatus === 1">
|
|
<strong> Confirmar el pre-registro del alumno </strong>
|
|
</h3>
|
|
|
|
<h3 class="title" v-if="alumno.Status.idStatus === 4">
|
|
<strong> Término </strong>
|
|
</h3>
|
|
|
|
<h3 class="title" v-if="alumno.Status.idStatus === 5">
|
|
<strong> Validar el término del alumno </strong>
|
|
</h3>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
alumno: { type: Object, required: true },
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|