fix(Filed): onclick label execute twice (#11838)

* fix(Filed): onclick label execute twice

* fix(Filed): onclick label execute twice

* Update Field.tsx

---------

Co-authored-by: zyc <1439655764>
Co-authored-by: neverland <jait.chen@foxmail.com>
This commit is contained in:
绯色琉璃 2023-05-14 21:58:51 +08:00 committed by GitHub
parent d05972d229
commit ca59be8ea6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -584,6 +584,11 @@ export default defineComponent({
<label
id={`${id}-label`}
for={getInputId()}
onClick={(event: MouseEvent) => {
// https://github.com/youzan/vant/issues/11831
preventDefault(event);
focus();
}}
style={
labelAlign === 'top' && labelWidth
? { width: addUnit(labelWidth) }