fix: modify logout name

This commit is contained in:
chansee97 2024-06-07 23:58:02 +08:00
parent 89e8b0e3e1
commit 86ef62f841
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, logOut } = 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: () => {
logOut()
logout()
},
})
}

View File

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

View File

@ -23,7 +23,7 @@ export const useAuthStore = defineStore('auth-store', {
},
actions: {
/* 登录退出,重置用户信息等 */
async logOut() {
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.logOut()
authStore.logout()
return
}