forked from dyf/dyf-vue-ui
多租户平台
This commit is contained in:
9
src/utils/auth.ts
Normal file
9
src/utils/auth.ts
Normal file
@ -0,0 +1,9 @@
|
||||
const TokenKey = 'Admin-Token';
|
||||
|
||||
const tokenStorage = useStorage<null | string>(TokenKey, null);
|
||||
|
||||
export const getToken = () => tokenStorage.value;
|
||||
|
||||
export const setToken = (access_token: string) => (tokenStorage.value = access_token);
|
||||
|
||||
export const removeToken = () => (tokenStorage.value = null);
|
||||
Reference in New Issue
Block a user