richardtallent / vue-simple-calendar

Simple Vue component to show a month-grid calendar with events
MIT License
878 stars 159 forks source link

Optional tooltip #242

Open aboutofpluto opened 4 weeks ago

aboutofpluto commented 4 weeks ago

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