diff --git a/src/runtime/composables/useFormGroup.ts b/src/runtime/composables/useFormGroup.ts index 1b0cbf05..c34311ad 100644 --- a/src/runtime/composables/useFormGroup.ts +++ b/src/runtime/composables/useFormGroup.ts @@ -1,6 +1,6 @@ -import { inject } from 'vue' -import { UseEventBusReturn, useDebounceFn } from '@vueuse/core' -import { FormEvent, FormEventType } from '../types' +import { inject, ref } from 'vue' +import { type UseEventBusReturn, useDebounceFn } from '@vueuse/core' +import type { FormEvent, FormEventType } from '../types' export const useFormGroup = () => { const formBus = inject | undefined>('form-events', undefined)