mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
fix(components): [cascader] Unable to use spaces when filtering (#5676)
This commit is contained in:
parent
97658e2e5c
commit
1a24e85248
@ -39,7 +39,7 @@
|
||||
>
|
||||
<el-input
|
||||
ref="input"
|
||||
v-model.trim="inputValue"
|
||||
v-model="inputValue"
|
||||
:placeholder="inputPlaceholder"
|
||||
:readonly="readonly"
|
||||
:disabled="isDisabled"
|
||||
@ -92,7 +92,7 @@
|
||||
</el-tag>
|
||||
<input
|
||||
v-if="filterable && !isDisabled"
|
||||
v-model.trim="searchInputValue"
|
||||
v-model="searchInputValue"
|
||||
type="text"
|
||||
class="el-cascader__search-input"
|
||||
:placeholder="presentText ? '' : inputPlaceholder"
|
||||
|
Loading…
Reference in New Issue
Block a user