You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /*
- * @Date: 2021-11-30 15:34:34
- * @LastEditors: JinxuChen
- * @LastEditTime: 2021-12-06 16:10:40
- * @FilePath: \GpsCardAdmin\src\utils\auth-token.js
- * @description:
- */
- import Cookies from 'js-cookie'
-
- const TokenKey = 'authtoken'
-
- export function getAuthToken() {
- return Cookies.get(TokenKey)
- }
-
- export function setAuthToken(token) {
- return Cookies.set(TokenKey, token)
- }
-
- export function removeAuthToken() {
- return Cookies.remove(TokenKey)
- }
|