git checkout tomy

This commit is contained in:
Andres2908
2020-11-23 15:35:03 -06:00
parent 398522eb46
commit 7b64ccd320
11 changed files with 916 additions and 231 deletions
+22
View File
@@ -0,0 +1,22 @@
<template>
<div class="container">
<p class="is-size-2 mb-5">Programas de Servicio Social</p>
<b-button class="is-info" @click="regresar()">Regresar</b-button>
<TablaResponsables />
</div>
</template>
<script>
import tablaResponsables from '../../../components/admin/servicio/programa/tablaResponsables'
export default {
components: {
tablaResponsables
},
methods: {
regresar () {
localStorage.removeItem('idRegistro')
this.$router.push('./')
}
}
}
</script>