forked from opentiny/tiny-vue
fix(search): fixed the maxlength attribute bug in search (#1528)
This commit is contained in:
parent
c1ec610ae7
commit
78851649f4
|
@ -36,21 +36,7 @@
|
||||||
</transition>
|
</transition>
|
||||||
<input
|
<input
|
||||||
ref="input"
|
ref="input"
|
||||||
v-bind="
|
v-bind="a($attrs, ['type', 'class', 'style', '^on\w+', 'id', 'disabled', 'clearable'])"
|
||||||
a($attrs, [
|
|
||||||
'type',
|
|
||||||
'class',
|
|
||||||
'style',
|
|
||||||
'^on\w+',
|
|
||||||
'id',
|
|
||||||
'disabled',
|
|
||||||
'clearable',
|
|
||||||
'max',
|
|
||||||
'min',
|
|
||||||
'readonly',
|
|
||||||
'step'
|
|
||||||
])
|
|
||||||
"
|
|
||||||
v-model="state.currentValue"
|
v-model="state.currentValue"
|
||||||
:style="
|
:style="
|
||||||
transparent
|
transparent
|
||||||
|
|
Loading…
Reference in New Issue