style: 更改cache文件夹名

This commit is contained in:
h_mo 2022-09-17 20:23:55 +08:00
parent d1458d3d6f
commit 4d62958316
5 changed files with 3 additions and 3 deletions

View File

@ -75,7 +75,7 @@
│ │ └─ ...
│ │
│ └─utils # 工具类
│ ├─ catch # 缓存相关目录
│ ├─ cache # 缓存相关目录
│ ├─ http # request相关目录
│ ├─ interceptors # 拦截器相关目录
│ └─ ...

View File

@ -1,5 +1,5 @@
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 { login } from '@/services/api/auth';
import { logout, refreshToken } from '@/services/api/auth';

View File

@ -1,4 +1,4 @@
import { getCache } from '@/utils/catch';
import { getCache } from '@/utils/cache';
import { TOKEN_KEY } from '@/enums/cacheEnum';
export const TOKEN = () => getCache<string>(TOKEN_KEY) || undefined;