From 9e961c778c7a88469d685f8efbf2a038454693a8 Mon Sep 17 00:00:00 2001 From: guoapeng Date: Tue, 8 Jul 2025 19:31:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=87=8D=E6=96=B0=E5=8A=A0=E8=BD=BD?= =?UTF-8?q?=E5=90=8E=E5=9B=9E=E5=88=B0=E7=99=BB=E5=BD=95=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/hooks/useActivateDebug.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/hooks/useActivateDebug.ts b/src/hooks/useActivateDebug.ts index 3553cdb..d70f82c 100644 --- a/src/hooks/useActivateDebug.ts +++ b/src/hooks/useActivateDebug.ts @@ -1,4 +1,5 @@ import { ElMessageBox } from 'element-plus' +import { delToken } from 'libs/token' import { useSystemStore } from 'stores/systemStore' import { ref } from 'vue' @@ -24,6 +25,7 @@ export const useActivateDebug = () => { logoClickCount.value = 0 // 重置计数器 }) .then(() => { + delToken() location.reload() }) }