26 lines
471 B
Vue
26 lines
471 B
Vue
<template>
|
|
<div class="container">
|
|
<section class="box">
|
|
<p class="subtitle is-3">Asignar fechas de inscripción</p>
|
|
|
|
<FechasInscripcion />
|
|
</section>
|
|
|
|
<TableTickets />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TableTickets from '~/components/admin/tableTickets.vue'
|
|
import FechasInscripcion from '~/components/admin/fechasInscripcion.vue'
|
|
|
|
export default {
|
|
components: {
|
|
TableTickets,
|
|
FechasInscripcion,
|
|
},
|
|
}
|
|
</script>
|
|
|
|
<style></style>
|