mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
perf: 注释logout api 的调用
This commit is contained in:
parent
cd96923d77
commit
7bc5b4ccba
@ -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<any> {
|
||||
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);
|
||||
}
|
||||
},
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user