Replies: 1 comment
-
Are you interested in creating a PR? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Password Inputs props "show-password-on"="mousedown" work only in desktop devices, mobile devices have "touchstart", "touchend" events and don't handle mouse events...
el.addEventListener("touchstart", handleStart, false);
el.addEventListener("touchend", handleEnd, false);
https://github.com/TuSimple/naive-ui/blob/70399bcd4b439ac2d977d8eb105cbb71b175cd40/src/input/src/Input.tsx#L1009
Beta Was this translation helpful? Give feedback.
All reactions