From 4d62958316a7895d4492f0d991f746aacd8935a5 Mon Sep 17 00:00:00 2001 From: h_mo <596417202@qq.com> Date: Sat, 17 Sep 2022 20:23:55 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E6=9B=B4=E6=94=B9cache=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E5=A4=B9=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- src/state/modules/auth.ts | 2 +- src/utils/auth.ts | 2 +- src/utils/{catch => cache}/index.ts | 0 src/utils/{catch => cache}/storageCache.ts | 0 5 files changed, 3 insertions(+), 3 deletions(-) rename src/utils/{catch => cache}/index.ts (100%) rename src/utils/{catch => cache}/storageCache.ts (100%) diff --git a/README.md b/README.md index e62df37..54ad5c9 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ │ │ └─ ... │ │ │ └─utils # 工具类 -│ ├─ catch # 缓存相关目录 +│ ├─ cache # 缓存相关目录 │ ├─ http # request相关目录 │ ├─ interceptors # 拦截器相关目录 │ └─ ... diff --git a/src/state/modules/auth.ts b/src/state/modules/auth.ts index fcd041f..0203e2f 100644 --- a/src/state/modules/auth.ts +++ b/src/state/modules/auth.ts @@ -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'; diff --git a/src/utils/auth.ts b/src/utils/auth.ts index 1d09c9c..2b5dbb3 100644 --- a/src/utils/auth.ts +++ b/src/utils/auth.ts @@ -1,4 +1,4 @@ -import { getCache } from '@/utils/catch'; +import { getCache } from '@/utils/cache'; import { TOKEN_KEY } from '@/enums/cacheEnum'; export const TOKEN = () => getCache(TOKEN_KEY) || undefined; diff --git a/src/utils/catch/index.ts b/src/utils/cache/index.ts similarity index 100% rename from src/utils/catch/index.ts rename to src/utils/cache/index.ts diff --git a/src/utils/catch/storageCache.ts b/src/utils/cache/storageCache.ts similarity index 100% rename from src/utils/catch/storageCache.ts rename to src/utils/cache/storageCache.ts