refactor: 删除无用文件

Former-commit-id: b3b84e30aa22b9157fcddf4b8d6f493b05952c56
This commit is contained in:
haoxr
2023-02-28 23:56:32 +08:00
parent 274f683a47
commit 0dcfd5286e
3 changed files with 0 additions and 107 deletions

View File

@@ -1,15 +0,0 @@
import Cookies from 'js-cookie';
const TokenKey = 'vue3-element-admin-token';
export function getToken() {
return Cookies.get(TokenKey);
}
export function setToken(token: string) {
Cookies.set(TokenKey, token);
}
export function removeToken() {
return Cookies.remove(TokenKey);
}