mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Field): failed to inherit class/style
This commit is contained in:
parent
4d58dbe3a6
commit
ad1301636d
@ -429,6 +429,7 @@ export default createComponent({
|
||||
...this.$attrs,
|
||||
ref: 'input',
|
||||
name: this.name,
|
||||
style: null,
|
||||
class: bem('control', inputAlign),
|
||||
value: this.modelValue,
|
||||
disabled: this.disabled,
|
||||
@ -569,12 +570,16 @@ export default createComponent({
|
||||
}}
|
||||
icon={this.leftIcon}
|
||||
size={this.size}
|
||||
class={bem({
|
||||
error: this.showError,
|
||||
disabled: this.disabled,
|
||||
[`label-${labelAlign}`]: labelAlign,
|
||||
'min-height': this.type === 'textarea' && !this.autosize,
|
||||
})}
|
||||
class={[
|
||||
bem({
|
||||
error: this.showError,
|
||||
disabled: this.disabled,
|
||||
[`label-${labelAlign}`]: labelAlign,
|
||||
'min-height': this.type === 'textarea' && !this.autosize,
|
||||
}),
|
||||
this.$attrs.class,
|
||||
]}
|
||||
style={this.$attrs.style}
|
||||
center={this.center}
|
||||
border={this.border}
|
||||
isLink={this.isLink}
|
||||
|
Loading…
x
Reference in New Issue
Block a user