vue3-datepicker icon indicating copy to clipboard operation
vue3-datepicker copied to clipboard

Improved opening behaviour after selection

Open 8845musign opened this issue 1 year ago • 2 comments

  • Once a value is selected, the picker does not open when the input is clicked
  • Because the focus event is not fired twice
  • Fixed to open the picker in the click event
    • The actual open process runs twice, but it seems to be fine.

8845musign avatar May 21 '24 12:05 8845musign

I have same issue, please merge it, SOS help me please T.T

vietnguyenhub avatar May 31 '24 09:05 vietnguyenhub

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();
      }
    }

sumiki avatar Aug 21 '24 22:08 sumiki