mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Search): add update:modelValue emits (#7872)
This commit is contained in:
parent
597122117e
commit
ec1aef91de
@ -36,7 +36,7 @@ export default createComponent({
|
|||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
emits: ['search', 'cancel'],
|
emits: ['update:modelValue', 'search', 'cancel'],
|
||||||
|
|
||||||
setup(props, { emit, slots, attrs }) {
|
setup(props, { emit, slots, attrs }) {
|
||||||
const filedRef = ref();
|
const filedRef = ref();
|
||||||
@ -109,6 +109,10 @@ export default createComponent({
|
|||||||
style: null,
|
style: null,
|
||||||
class: null,
|
class: null,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const onInput = (value) => {
|
||||||
|
emit('update:modelValue', value);
|
||||||
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Field
|
<Field
|
||||||
@ -118,6 +122,7 @@ export default createComponent({
|
|||||||
border={false}
|
border={false}
|
||||||
onKeypress={onKeypress}
|
onKeypress={onKeypress}
|
||||||
{...fieldAttrs}
|
{...fieldAttrs}
|
||||||
|
{...{ 'onUpdate:modelValue': onInput }}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user