32 lines
652 B
Vue
32 lines
652 B
Vue
|
<template lang="pug">
|
||
|
div
|
||
|
h3 {{ nombreAño }}
|
||
|
|
||
|
tabla-horarios(:nombreAño="nombreAño")
|
||
|
curso(v-for="(curso, n) in año" :key="n" :curso="curso" :nombreAño="nombreAño")
|
||
|
//
|
||
|
</template>
|
||
|
|
||
|
<script lang="coffee">
|
||
|
import curso from "./curso.vue"
|
||
|
import tablaHorarios from "./tabla-horarios.vue"
|
||
|
|
||
|
export default
|
||
|
name: "Anio"
|
||
|
components: { curso, tablaHorarios }
|
||
|
props:
|
||
|
año:
|
||
|
type: Object
|
||
|
required: true
|
||
|
nombreAño:
|
||
|
type: String
|
||
|
required: true
|
||
|
|
||
|
#
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="sass">
|
||
|
|
||
|
|
||
|
//
|
||
|
</style>
|