diff --git a/components/calendar/state/monthly/DayTile.vue b/components/calendar/state/monthly/DayTile.vue index d766269..76d7e50 100644 --- a/components/calendar/state/monthly/DayTile.vue +++ b/components/calendar/state/monthly/DayTile.vue @@ -12,6 +12,10 @@ const props = defineProps<{ faded?: boolean }>() +const emit = defineEmits<{ + (e: "on-open-create-dialog", date: RPGDate): void +}>() + const calendarTile = ref() const calendarEventsList = ref() @@ -153,7 +157,12 @@ const eventsNotDisplayed: ComputedRef = computed(() => eventsFo - + +