fix: 修复退出登录问题
This commit is contained in:
@@ -22,7 +22,7 @@ function logout() {
|
||||
okText: $t('common.confirm'),
|
||||
cancelText: $t('common.cancel'),
|
||||
onOk: () => {
|
||||
authStore.resetStore();
|
||||
authStore.resetStore(true);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -43,7 +43,7 @@ export const useAuthStore = defineStore(SetupStoreId.Auth, () => {
|
||||
*/
|
||||
async function resetStore(isMe = false) {
|
||||
if (isMe) {
|
||||
doDeleteLogout();
|
||||
await doDeleteLogout();
|
||||
}
|
||||
|
||||
const authStore = useAuthStore();
|
||||
|
||||
Reference in New Issue
Block a user