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