From 0d1c580156476709eb9cdca7b2cce7d25b446dab Mon Sep 17 00:00:00 2001 From: Dede Fuji Abdul Date: Thu, 2 Nov 2023 12:33:37 +0700 Subject: [PATCH] Refactor menu.ts imports. --- src/stores/menu.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/menu.ts b/src/stores/menu.ts index fc70432..2976177 100644 --- a/src/stores/menu.ts +++ b/src/stores/menu.ts @@ -1,4 +1,4 @@ -import { onMounted, ref, watch } from 'vue' +import { ref, shallowRef, watch } from 'vue' import { defineStore } from 'pinia' import { useRoute, useRouter } from 'vue-router' import { convertRouteToMenu } from '@/utils/route'