fix(module): use relative imports to components / composables

This commit is contained in:
Benjamin Canac
2024-07-25 17:00:57 +02:00
parent 8bac288687
commit 42f4f8d337
35 changed files with 116 additions and 44 deletions

View File

@@ -3,7 +3,7 @@
import { ref, computed, toValue } from 'vue'
import type { MaybeRef } from 'vue'
import { useEventListener, useActiveElement, useDebounceFn } from '@vueuse/core'
import { useKbd } from '#imports'
import { useKbd } from '../composables/useKbd'
type Handler = (e?: any) => void