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