vue-simple-calendar
vue-simple-calendar copied to clipboard
Optional tooltip
Dear Richard,
First of all, thank you for this light and easy-to-use calendar plugin for vue!
This issue is a quite simple feature request.
Would you agree to add an enableTooltip
(default = true) so that when one wants to use doEmitItemMouseEvents
for more advanced tooltips, the default one does not appear?
I think it is enough to add in CalendarView.vue
:
:title="enableTooltip ? i.tooltip || i.title : null"
on lines 90 and 180
and then
enableTooltip?: boolean
on line 162
enableTooltip: true,
on line 191
or something similar.
I can open a merge request if you prefer (including the update of the README).
Best, Anthony