fix: modify logout name

This commit is contained in:
chansee97 2024-06-07 21:04:57 +08:00
parent 8a5d8a67ea
commit 02ce6568b7
4 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ import IconBookOpen from '~icons/icon-park-outline/book-open'
const { t } = useI18n()
const { userInfo, resetAuthStore } = useAuthStore()
const { userInfo, logOut } = useAuthStore()
const router = useRouter()
const options = computed(() => {
@ -56,7 +56,7 @@ function handleSelect(key: string | number) {
positiveText: t('common.confirm'),
negativeText: t('common.cancel'),
onPositiveClick: () => {
resetAuthStore()
logOut()
},
})
}

View File

@ -77,7 +77,7 @@ export async function handleRefreshToken() {
}
else {
// 刷新失败,退出
await authStore.resetAuthStore()
await authStore.logOut()
}
}

View File

@ -23,7 +23,7 @@ export const useAuthStore = defineStore('auth-store', {
},
actions: {
/* 登录退出,重置用户信息等 */
async resetAuthStore() {
async logOut() {
const route = unref(router.currentRoute)
// 清除本地缓存
this.clearAuthStorage()

View File

@ -41,7 +41,7 @@ export const useRouteStore = defineStore('route-store', {
if (!userInfo || !userInfo.id) {
const authStore = useAuthStore()
authStore.resetAuthStore()
authStore.logOut()
return
}