All Downloads are FREE. Search and download functionalities are using the official Maven repository.

web.src.utils.token.ts Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
/**
 * @name: token管理工具
 * @author: itmobai
 * @date: 2023-03-14 13:55
 * @description:token管理工具
 * @update: 2023-03-14 13:55
 */
import Cookie from "js-cookie"

const tokenKey = "DZXH-Admin-Token"

/**
 * 存储token
 * @param token token
 */
export const setToken = (token: string) => {
  Cookie.set(tokenKey, token)
}

/**
 * 获取token
 */
export const getToken = () => {
  return Cookie.get(tokenKey)
}

/**
 * 移除token
 */
export const removeToken = () => {
  Cookie.remove(tokenKey)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy