28 lines
485 B
Vue
28 lines
485 B
Vue
<template>
|
|
<div class="container">
|
|
<div class="section">
|
|
<div class="pb-0">
|
|
<p class="title is-three-fifths is-offset-one-fifth">Servicios Sociales</p>
|
|
</div>
|
|
<section class="section">
|
|
<InputTable :id="id"/>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import InputTable from '../../components/responsable/inputTable'
|
|
|
|
export default {
|
|
components: {
|
|
InputTable
|
|
},
|
|
data () {
|
|
return {
|
|
id: 1
|
|
}
|
|
}
|
|
}
|
|
</script>
|