From 12d467e4989b08bd291c14b311de8d0142eaa7e6 Mon Sep 17 00:00:00 2001 From: zkwolf Date: Mon, 23 Nov 2020 14:24:33 +0800 Subject: [PATCH] fix: range-picker style order #3219 (#3245) --- components/date-picker/RangePicker.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/date-picker/RangePicker.tsx b/components/date-picker/RangePicker.tsx index 1bff2f4c92..8b7305551e 100644 --- a/components/date-picker/RangePicker.tsx +++ b/components/date-picker/RangePicker.tsx @@ -430,7 +430,7 @@ export default defineComponent({ ref={this.savePicker} id={props.id} class={classNames(props.class, props.pickerClass)} - style={{ ...style, ...pickerStyle }} + style={{ ...pickerStyle, ...style }} tabindex={props.disabled ? -1 : 0} onFocus={onFocus} onBlur={onBlur}