Commit bcad95d32a08a73f84ecbabab409cd64159f4077
1 parent
125a7d14
fix(form): fix form update problem
修复表单组件在特定情况下的卡顿、崩溃问题 fix: #720
Showing
1 changed file
with
4 additions
and
1 deletions
src/components/Form/src/hooks/useAdvanced.ts
... | ... | @@ -7,6 +7,7 @@ import { computed, unref, watch } from 'vue'; |
7 | 7 | import { isBoolean, isFunction, isNumber, isObject } from '/@/utils/is'; |
8 | 8 | |
9 | 9 | import { useBreakpoint } from '/@/hooks/event/useBreakpoint'; |
10 | +import { useDebounceFn } from '@vueuse/core'; | |
10 | 11 | |
11 | 12 | const BASIC_COL_LEN = 24; |
12 | 13 | |
... | ... | @@ -49,12 +50,14 @@ export default function ({ |
49 | 50 | return 0; |
50 | 51 | }); |
51 | 52 | |
53 | + const debounceUpdateAdvanced = useDebounceFn(updateAdvanced, 30); | |
54 | + | |
52 | 55 | watch( |
53 | 56 | [() => unref(getSchema), () => advanceState.isAdvanced, () => unref(realWidthRef)], |
54 | 57 | () => { |
55 | 58 | const { showAdvancedButton } = unref(getProps); |
56 | 59 | if (showAdvancedButton) { |
57 | - updateAdvanced(); | |
60 | + debounceUpdateAdvanced(); | |
58 | 61 | } |
59 | 62 | }, |
60 | 63 | { immediate: true } | ... | ... |