mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-06 03:58:03 +08:00
style: 更改cache文件夹名
This commit is contained in:
parent
d1458d3d6f
commit
4d62958316
@ -75,7 +75,7 @@
|
|||||||
│ │ └─ ...
|
│ │ └─ ...
|
||||||
│ │
|
│ │
|
||||||
│ └─utils # 工具类
|
│ └─utils # 工具类
|
||||||
│ ├─ catch # 缓存相关目录
|
│ ├─ cache # 缓存相关目录
|
||||||
│ ├─ http # request相关目录
|
│ ├─ http # request相关目录
|
||||||
│ ├─ interceptors # 拦截器相关目录
|
│ ├─ interceptors # 拦截器相关目录
|
||||||
│ └─ ...
|
│ └─ ...
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import { defineStore } from 'pinia';
|
import { defineStore } from 'pinia';
|
||||||
import { getCache, removeCache, setCache } from '@/utils/catch';
|
import { getCache, removeCache, setCache } from '@/utils/cache';
|
||||||
import { TOKEN_KEY } from '@/enums/cacheEnum';
|
import { TOKEN_KEY } from '@/enums/cacheEnum';
|
||||||
import { login } from '@/services/api/auth';
|
import { login } from '@/services/api/auth';
|
||||||
import { logout, refreshToken } from '@/services/api/auth';
|
import { logout, refreshToken } from '@/services/api/auth';
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { getCache } from '@/utils/catch';
|
import { getCache } from '@/utils/cache';
|
||||||
import { TOKEN_KEY } from '@/enums/cacheEnum';
|
import { TOKEN_KEY } from '@/enums/cacheEnum';
|
||||||
|
|
||||||
export const TOKEN = () => getCache<string>(TOKEN_KEY) || undefined;
|
export const TOKEN = () => getCache<string>(TOKEN_KEY) || undefined;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user