fix(components): [autocomplete] clearable and disabled props not working (#11714)

* fix(components): [autocomplete] clearable and disabled props not working

* fix(components): [autocomplete] add name props to input (#11714)
This commit is contained in:
richex-cn
2023-02-24 15:14:04 +08:00
committed by GitHub
parent a5e09ca178
commit e46fd703a3

View File

@@ -29,6 +29,9 @@
<el-input
ref="inputRef"
v-bind="attrs"
:clearable="clearable"
:disabled="disabled"
:name="name"
:model-value="modelValue"
@input="handleInput"
@change="handleChange"