This is barely functionnal, but at least it can display some data without crashing Most other functionnalities other than displaying events are broken, and so are the relative date operations, they need to be fixed asap
24 lines
451 B
Vue
24 lines
451 B
Vue
<script lang="ts" setup>
|
|
import type { CalendarMonth } from '~/models/CalendarMonth';
|
|
|
|
defineProps<{
|
|
month: CalendarMonth
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<div class="font-medium">
|
|
{{ month.name }}
|
|
</div>
|
|
<div class="grid grid-cols-7">
|
|
<CalendarStateYearlyDayTile
|
|
v-for="day in month.days"
|
|
:key="day"
|
|
:month-number="month.position"
|
|
:day-number="day"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|