2020-11-19 16:12:38 -06:00
|
|
|
<template>
|
|
|
|
|
<div class="container">
|
|
|
|
|
<p class="is-size-2 mb-5">Programas de Servicio Social</p>
|
2020-11-19 16:21:02 -06:00
|
|
|
<b-button class="is-info" @click="regresar()">Regresar</b-button>
|
2020-11-19 16:12:38 -06:00
|
|
|
<TablaResponsables />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2020-12-08 21:50:16 -06:00
|
|
|
import tablaResponsables from "../../../components/admin/servicio/programa/tablaResponsables";
|
2020-11-19 16:12:38 -06:00
|
|
|
export default {
|
|
|
|
|
components: {
|
2020-12-08 21:50:16 -06:00
|
|
|
tablaResponsables,
|
2020-11-19 16:21:02 -06:00
|
|
|
},
|
|
|
|
|
methods: {
|
2020-12-08 21:50:16 -06:00
|
|
|
regresar() {
|
|
|
|
|
localStorage.removeItem("idRegistro");
|
|
|
|
|
this.$router.push("./");
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
2020-11-19 16:12:38 -06:00
|
|
|
</script>
|