Skip to content

Commit

Permalink
fix(FormGroup): add missing ref import from vue
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Aug 12, 2023
1 parent 474dafc commit 42a45fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/runtime/composables/useFormGroup.ts
Original file line number Diff line number Diff line change
@@ -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<UseEventBusReturn<FormEvent, string> | undefined>('form-events', undefined)
Expand Down

1 comment on commit 42a45fe

@vercel
Copy link

@vercel vercel bot commented on 42a45fe Aug 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

ui – ./

ui-git-dev-nuxtlabs.vercel.app
ui.nuxtlabs.com
ui-nuxtlabs.vercel.app

Please sign in to comment.