0👍
To format the event name you could use the event
slot instead of event-name
prop :
<v-calendar
ref="calendar"
:events="day_reports"
:event-name="formatEventName"
>
<template #event="{eventParsed}" >
<v-btn><v-icon>icon_name</v-icon> {{eventParsed.input.user.name}}<v-btn>
</template>
</v-calendar>
- [Vuejs]-Working in vue.js how am I to pull and post data from my google spreadsheet?
- [Vuejs]-How to call computed props dynamically on templates?
Source:stackexchange.com