Skip to content

Commit

Permalink
fix(defineShortcuts): missing useDebounceFn import
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamincanac committed Jun 21, 2023
1 parent a880379 commit 9cd73aa
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/runtime/composables/defineShortcuts.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { ref } from 'vue'
import { ref, computed } from 'vue'
import type { ComputedRef, WatchSource } from 'vue'
import { logicAnd, logicNot } from '@vueuse/math'
import { useEventListener } from '@vueuse/core'
import { computed } from 'vue'
import { useEventListener, useDebounceFn } from '@vueuse/core'
import { useShortcuts } from './useShortcuts'

export interface ShortcutConfig {
Expand Down

0 comments on commit 9cd73aa

Please sign in to comment.