15 lines
221 B
Vue
15 lines
221 B
Vue
<template>
|
|
<section>
|
|
<Cuestionario />
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import Cuestionario from "../../../components/responsable/cartaTermino";
|
|
export default {
|
|
components: {
|
|
Cuestionario,
|
|
},
|
|
};
|
|
</script>
|