From 18803a407a0437cc32aa147f2197ab2ce2b3f059 Mon Sep 17 00:00:00 2001 From: sallerli1 Date: Wed, 15 Jun 2022 10:49:47 +0800 Subject: [PATCH] fix(comp:time-picker): fix time range input --- packages/components/time-picker/src/content/RangeContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/components/time-picker/src/content/RangeContent.tsx b/packages/components/time-picker/src/content/RangeContent.tsx index 8fb4090fb..ea0124d05 100644 --- a/packages/components/time-picker/src/content/RangeContent.tsx +++ b/packages/components/time-picker/src/content/RangeContent.tsx @@ -103,7 +103,7 @@ export default defineComponent({ readonly={props.readonly} focused={inputFocused.value} placeholder={placeholder} - onChange={handleInput} + onInput={handleInput} onClear={handleInputClear} onFocus={handleInputFocus} onBlur={handleInputBlur}