From ec1aef91de409f4cf2c01c7620f3dab64f4c9940 Mon Sep 17 00:00:00 2001 From: Mikasa33 Date: Mon, 11 Jan 2021 17:37:14 +0800 Subject: [PATCH] fix(Search): add update:modelValue emits (#7872) --- src/search/index.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/search/index.js b/src/search/index.js index c16f5b557..990c06eab 100644 --- a/src/search/index.js +++ b/src/search/index.js @@ -36,7 +36,7 @@ export default createComponent({ }, }, - emits: ['search', 'cancel'], + emits: ['update:modelValue', 'search', 'cancel'], setup(props, { emit, slots, attrs }) { const filedRef = ref(); @@ -109,6 +109,10 @@ export default createComponent({ style: null, class: null, }; + + const onInput = (value) => { + emit('update:modelValue', value); + }; return ( ); };