vue3-datepicker
vue3-datepicker copied to clipboard
Improved opening behaviour after selection
- Once a value is selected, the picker does not open when the input is clicked
- Because the
focusevent is not fired twice - Fixed to open the picker in the
clickevent- The actual open process runs twice, but it seems to be fine.
I have same issue, please merge it, SOS help me please T.T
upgraded from 0.2.4 to 0.4 then this start happening. better not to add many codes but work around was
@closed="handleEffectDateClose"
const handleEffectDateClose = (e) => {
if (document.activeElement) {
document.activeElement.blur();
}
}