Browse Source

fix: range-picker style order #3219 (#3245)

pull/3258/head
zkwolf 4 years ago committed by GitHub
parent
commit
12d467e498
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/date-picker/RangePicker.tsx

2
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}

Loading…
Cancel
Save