16 lines
249 B
Vue
16 lines
249 B
Vue
<template>
|
|
<section class="section">
|
|
<VistaServicio />
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import vistaServicio from "../../../components/admin/servicio/vistaServicio.vue";
|
|
|
|
export default {
|
|
components: {
|
|
vistaServicio,
|
|
},
|
|
};
|
|
</script>
|