From 1384174f03c9a009cfbb3ae99aaeec21f177e4c2 Mon Sep 17 00:00:00 2001 From: yyg1378265336 <1378265336@qq.com> Date: 星期四, 27 二月 2025 09:26:30 +0800 Subject: [PATCH] 生产工具信息 --- src/components/Form/src/hooks/useAutoFocus.ts | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/Form/src/hooks/useAutoFocus.ts b/src/components/Form/src/hooks/useAutoFocus.ts index e24dd6b..a88a4c3 100644 --- a/src/components/Form/src/hooks/useAutoFocus.ts +++ b/src/components/Form/src/hooks/useAutoFocus.ts @@ -1,5 +1,9 @@ import type { ComputedRef, Ref } from 'vue'; -import type { FormSchema, FormActionType, FormProps } from '../types/form'; +import { + type FormSchemaInner as FormSchema, + type FormActionType, + type FormProps, +} from '../types/form'; import { unref, nextTick, watchEffect } from 'vue'; @@ -29,7 +33,7 @@ const firstItem = schemas[0]; // Only open when the first form item is input type - if (!firstItem.component.includes('Input')) { + if (!firstItem.component || !firstItem.component.includes('Input')) { return; } -- Gitblit v1.9.3