perf: optimizing hidden fields cannot trigger `dependencies` (#7142)

pull/332/head^2
ming4762 2026-01-26 16:12:26 +08:00 committed by GitHub
parent 6a9012e5e4
commit 528395e2c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 2 deletions

View File

@ -82,10 +82,8 @@ export default function useDependencies(
// 2. 判断show如果show为false则隐藏
if (isFunction(show)) {
isShow.value = !!(await show(formValues, formApi));
if (!isShow.value) return;
} else if (isBoolean(show)) {
isShow.value = show;
if (!isShow.value) return;
}
if (isFunction(componentProps)) {