From 7bc5b4ccbaae3316522cf083fb3ea4cea4718064 Mon Sep 17 00:00:00 2001 From: h_mo <596417202@qq.com> Date: Sun, 25 Feb 2024 13:46:21 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E6=B3=A8=E9=87=8Alogout=20api=20?= =?UTF-8?q?=E7=9A=84=E8=B0=83=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/state/modules/auth.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/state/modules/auth.ts b/src/state/modules/auth.ts index f9543e7..fb6a319 100644 --- a/src/state/modules/auth.ts +++ b/src/state/modules/auth.ts @@ -1,7 +1,7 @@ import { defineStore } from 'pinia'; import { getCache, removeCache, setCache } from '@/utils/cache'; import { TOKEN_KEY } from '@/enums/cacheEnum'; -import { logout } from '@/services/api/auth'; +// import { logout } from '@/services/api/auth'; interface AuthState { token?: string; @@ -32,12 +32,11 @@ export const useAuthStore = defineStore({ */ async loginOut(): Promise { try { - const res = await logout(); + // await logout(); removeCache(TOKEN_KEY); this.setToken(undefined); - return Promise.resolve(res); } catch (err: any) { - return Promise.reject(err); + console.error(err); } }, /**