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,
|
...this.$attrs,
|
||||||
ref: 'input',
|
ref: 'input',
|
||||||
name: this.name,
|
name: this.name,
|
||||||
|
style: null,
|
||||||
class: bem('control', inputAlign),
|
class: bem('control', inputAlign),
|
||||||
value: this.modelValue,
|
value: this.modelValue,
|
||||||
disabled: this.disabled,
|
disabled: this.disabled,
|
||||||
@ -569,12 +570,16 @@ export default createComponent({
|
|||||||
}}
|
}}
|
||||||
icon={this.leftIcon}
|
icon={this.leftIcon}
|
||||||
size={this.size}
|
size={this.size}
|
||||||
class={bem({
|
class={[
|
||||||
|
bem({
|
||||||
error: this.showError,
|
error: this.showError,
|
||||||
disabled: this.disabled,
|
disabled: this.disabled,
|
||||||
[`label-${labelAlign}`]: labelAlign,
|
[`label-${labelAlign}`]: labelAlign,
|
||||||
'min-height': this.type === 'textarea' && !this.autosize,
|
'min-height': this.type === 'textarea' && !this.autosize,
|
||||||
})}
|
}),
|
||||||
|
this.$attrs.class,
|
||||||
|
]}
|
||||||
|
style={this.$attrs.style}
|
||||||
center={this.center}
|
center={this.center}
|
||||||
border={this.border}
|
border={this.border}
|
||||||
isLink={this.isLink}
|
isLink={this.isLink}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user