21 lines
368 B
Vue
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>
|