From 79bbe584ff9a265b1e5b38ba7a0764de5e513f8b Mon Sep 17 00:00:00 2001 From: zkwolf Date: Mon, 23 Nov 2020 06:19:09 +0000 Subject: [PATCH] fix: range-picker style order #3219 --- 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}