mirror of
https://gitee.com/likeadmin/likeadmin_java.git
synced 2026-05-17 14:43:02 +08:00
7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
import { TOKEN_KEY } from '@/enums/cacheEnums'
|
|
import cache from './cache'
|
|
|
|
export function getToken() {
|
|
return cache.get(TOKEN_KEY) || ''
|
|
}
|