huminmin
20 小时以前 a511182b3df028b4c38ef6289c03b8cd6765a02d
src/utils/auth.ts
对比新文件
@@ -0,0 +1,13 @@
const TokenKey = 'App-Token'
export function getToken():string {
  return uni.getStorageSync(TokenKey)
}
export function setToken(token:string) {
  return uni.setStorageSync(TokenKey, token)
}
export function removeToken() {
  return uni.removeStorageSync(TokenKey)
}