edu/uniapp/src/utils/auth.ts

7 lines
142 B
TypeScript
Raw Normal View History

2024-10-10 06:10:49 +00:00
import { TOKEN_KEY } from '@/enums/constantEnums'
2022-08-26 09:52:43 +00:00
import cache from './cache'
export function getToken() {
2024-10-10 06:10:49 +00:00
return cache.get(TOKEN_KEY)
2022-08-26 09:52:43 +00:00
}