This commit is contained in:
熊丽君
2021-08-02 09:31:25 +08:00
commit fa85ca8a08
257 changed files with 21097 additions and 0 deletions

15
src/utils/auth.js Normal file
View File

@ -0,0 +1,15 @@
import Cookies from 'js-cookie'
const TokenKey = 'Admin-Token'
export function getToken() {
return Cookies.get(TokenKey)
}
export function setToken(token) {
return Cookies.set(TokenKey, token)
}
export function removeToken() {
return Cookies.remove(TokenKey)
}