icehaunter / vue3-datepicker

Simple datepicker component for Vue 3
https://icehaunter.github.io/vue3-datepicker/
MIT License
151 stars 151 forks source link

Improved opening behaviour after selection #122

Open 8845musign opened 3 months ago

8845musign commented 3 months ago
vietnguyenhub commented 3 months ago

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

sumiki commented 2 weeks ago

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