refactor(core): replace vueuse imports with vue

This commit is contained in:
braks
2024-02-21 23:27:01 +01:00
committed by Braks
parent c24287d4fc
commit e5a84656ad
11 changed files with 21 additions and 28 deletions
+4 -3
View File
@@ -1,6 +1,7 @@
import { ref, watch } from 'vue'
import type { KeyFilter, KeyPredicate, MaybeRefOrGetter } from '@vueuse/core'
import { onKeyStroke, toValue, useEventListener } from '@vueuse/core'
import type { MaybeRefOrGetter } from 'vue'
import { ref, toValue, watch } from 'vue'
import type { KeyFilter, KeyPredicate } from '@vueuse/core'
import { onKeyStroke, useEventListener } from '@vueuse/core'
import { useWindow } from './useWindow'
export function isInputDOMNode(event: KeyboardEvent): boolean {