From 37443ac1b17b1014267f7fa48ad69f49c327cf65 Mon Sep 17 00:00:00 2001 From: Jazee6 Date: Thu, 6 Jun 2024 10:16:50 +0800 Subject: [PATCH] fix: ref is not defined --- utils/store.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/store.ts b/utils/store.ts index 74e128f..1c0c92a 100644 --- a/utils/store.ts +++ b/utils/store.ts @@ -1,4 +1,5 @@ import {createGlobalState} from "@vueuse/shared" +import {ref} from "vue" export const useGlobalState = createGlobalState(() => { const openModelSelect = ref(false)