fix(hooks): use-form-item circular reference (#7793)

This commit is contained in:
btea 2022-05-20 15:27:21 +08:00 committed by GitHub
parent 4172ff4da6
commit 82030446c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,8 +7,8 @@ import {
toRef,
watch,
} from 'vue'
import { useId } from '@element-plus/hooks'
import { formContextKey, formItemContextKey } from '@element-plus/tokens'
import { useId } from '../use-id'
import type { FormItemContext } from '@element-plus/tokens'
import type { ComputedRef, Ref, WatchStopHandle } from 'vue'