fix(BasicForm): type instantiation is excessively deep and possibly infinite. (#3128)

This commit is contained in:
Li Kui 2023-10-10 22:35:41 +08:00 committed by GitHub
parent 30b3ee5c89
commit 5a388be15e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,7 +50,6 @@
import { dateItemType } from './helper';
import { dateUtil } from '/@/utils/dateUtil';
// import { cloneDeep } from 'lodash-es';
import { deepMerge } from '/@/utils';
import { useFormValues } from './hooks/useFormValues';
@ -83,15 +82,15 @@
const defaultValueRef = ref({});
const isInitedDefaultRef = ref(false);
const propsRef = ref<Partial<FormProps>>({});
const propsRef = ref<Partial<FormProps>>();
const schemaRef = ref<FormSchema[] | null>(null);
const formElRef = ref<FormActionType | null>(null);
const { prefixCls } = useDesign('basic-form');
// Get the basic configuration of the form
const getProps = computed((): FormProps => {
return { ...props, ...unref(propsRef) };
const getProps = computed(() => {
return { ...props, ...unref(propsRef) } as FormProps;
});
const getFormClass = computed(() => {