15 lines
221 B
Vue
15 lines
221 B
Vue
<template>
|
|
<section class="section">
|
|
<Form />
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import Form from "../../../../components/admin/servicio/modificar/form";
|
|
export default {
|
|
components: {
|
|
Form,
|
|
},
|
|
};
|
|
</script>
|