feat(Field): enable inheritAttrs

This commit is contained in:
chenjiahan 2020-08-17 20:16:18 +08:00
parent 2937c1537e
commit 3c3e72cf79

View File

@ -19,8 +19,6 @@ import { cellProps } from '../cell/shared';
const [createComponent, bem] = createNamespace('field');
export default createComponent({
inheritAttrs: false,
provide() {
return {
vanField: this,
@ -426,7 +424,6 @@ export default createComponent({
}
const inputProps = {
...this.$attrs,
ref: 'input',
name: this.name,
style: null,
@ -570,16 +567,12 @@ 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,
}),
this.$attrs.class,
]}
style={this.$attrs.style}
class={bem({
error: this.showError,
disabled: this.disabled,
[`label-${labelAlign}`]: labelAlign,
'min-height': this.type === 'textarea' && !this.autosize,
})}
center={this.center}
border={this.border}
isLink={this.isLink}