mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-02 12:07:54 +08:00
fix: input-password prevent caret position (#2420)
This commit is contained in:
parent
5108f67c11
commit
413793234b
@ -60,6 +60,11 @@ export default {
|
||||
// https://github.com/ant-design/ant-design/issues/15173
|
||||
e.preventDefault();
|
||||
},
|
||||
mouseup: e => {
|
||||
// Prevent focused state lost
|
||||
// https://github.com/ant-design/ant-design/pull/23633/files
|
||||
e.preventDefault();
|
||||
},
|
||||
},
|
||||
class: `${prefixCls}-icon`,
|
||||
key: 'passwordIcon',
|
||||
|
Loading…
Reference in New Issue
Block a user