fix: 为 createServerTokenAuthentication 添加 statesHook 类型 (#32)

This commit is contained in:
TianQian 2024-08-08 23:48:09 +08:00 committed by GitHub
parent de4cd17548
commit a9c7708119
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,5 +1,5 @@
import { createAlova } from 'alova' import { createAlova } from 'alova'
import VueHook from 'alova/vue' import VueHook, { type VueHookType } from 'alova/vue'
import adapterFetch from 'alova/fetch' import adapterFetch from 'alova/fetch'
import { createServerTokenAuthentication } from 'alova/client' import { createServerTokenAuthentication } from 'alova/client'
import { import {
@ -14,7 +14,7 @@ import {
} from './config' } from './config'
import { local } from '@/utils' import { local } from '@/utils'
const { onAuthRequired, onResponseRefreshToken } = createServerTokenAuthentication({ const { onAuthRequired, onResponseRefreshToken } = createServerTokenAuthentication<VueHookType>({
// 服务端判定token过期 // 服务端判定token过期
refreshTokenOnSuccess: { refreshTokenOnSuccess: {
// 当服务端返回401时表示token过期 // 当服务端返回401时表示token过期