From 37b2271bf04adfe6bee4d984fa12452b2168318c Mon Sep 17 00:00:00 2001 From: Sylvain Marroufin Date: Thu, 9 Mar 2023 16:09:31 +0100 Subject: [PATCH] fix(defineShortcuts): add missing import --- src/runtime/composables/defineShortcuts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/composables/defineShortcuts.ts b/src/runtime/composables/defineShortcuts.ts index f36c7f2c06..2a6b3fbe6a 100644 --- a/src/runtime/composables/defineShortcuts.ts +++ b/src/runtime/composables/defineShortcuts.ts @@ -1,6 +1,6 @@ import type { Ref, ComputedRef } from 'vue' import { logicAnd, logicNot } from '@vueuse/math' -import { onMounted, onBeforeUnmount } from 'vue' +import { computed, onMounted, onBeforeUnmount } from 'vue' import { useShortcuts } from './useShortcuts' export interface ShortcutConfig {