20 lines
340 B
Vue
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>
|