I am using Vuetify v-calendar. Here is my code:
<v-calendar
ref="calendar"
v-model="value"
:disabled="isLoading|| (adminUser && noUserOrClientSelected)"
:events="events"
:view-mode="type"
:weekdays="weekday"
:intervals="12"
:interval-start="6"
@update:model-value="UpdateModelValue"
>
<template #event="{ event }">
<div> {{ event.customer_name }} - {{ event.title }}</div>
</template>
</v-calendar>
However,I continue to see the default title on the calendar event, and not “customer_name – title”. I don’t get any errors or warnings. Looks like the event slot is not being recognised. I am using vue 3.5.13 and vuetify 3.7.5.
Any suggestion, how to fix the issue?
Update: The event slot works when the calendar is in Month mode. However, it does not work in the Week mode. It is possible that this is a bug.