From c0e394db94730c7186f5d90644ce3433c50b7d92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AE=B8=E4=BF=8A=E6=9D=B0?= Date: Fri, 1 Nov 2024 10:59:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20search=20=E7=BB=84=E4=BB=B6=E7=BB=91?= =?UTF-8?q?=E5=AE=9A=E9=BB=98=E8=AE=A4=E6=9F=A5=E8=AF=A2=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E4=B8=8D=E7=94=9F=E6=95=88=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Web/src/components/table/search.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Web/src/components/table/search.vue b/Web/src/components/table/search.vue index d951fbba..33cfd963 100644 --- a/Web/src/components/table/search.vue +++ b/Web/src/components/table/search.vue @@ -139,7 +139,8 @@ watch( () => props.modelValue, (val) => { state.innerModelValue = val; - } + }, + { immediate: true } ); /** 监听 state.innerModelValue 变化 */