From 56bd1b28d01c6ad4b234e0cd59ed4455a018c75e Mon Sep 17 00:00:00 2001 From: saller Date: Wed, 15 Jun 2022 11:05:48 +0800 Subject: [PATCH] fix(comp:time-picker): fix time range input (#959) --- 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}