Files
servicio_social_front/pages/admin/servicio/index.vue
T
Lemuel Marquez 2f92ddea4a identacion
2021-01-05 15:14:10 -06:00

21 lines
368 B
Vue

<template>
<section class="section">
<VistaServicio />
</section>
</template>
<script>
import vistaServicio from "../../../components/admin/servicio/vistaServicio.vue";
export default {
components: {
vistaServicio,
},
beforeCreate() {
if (!window.localStorage.getItem("idServicio")) {
this.$router.push("/admin");
}
},
};
</script>