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

20 lines
340 B
Vue

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