From edc0949bed123230e5e17178da4e45900d516048 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Fri, 4 Jul 2025 16:21:05 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A7=BB=E9=99=A4=E5=85=A8=E5=B1=80=E8=AE=BE?= =?UTF-8?q?=E7=BD=AEstore=E5=B9=B6=E6=9B=B4=E6=96=B0=E5=BC=95=E7=94=A8?= =?UTF-8?q?=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/{globalSettings.ts => global.ts} | 0 src/stores/index.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/stores/{globalSettings.ts => global.ts} (100%) diff --git a/src/stores/globalSettings.ts b/src/stores/global.ts similarity index 100% rename from src/stores/globalSettings.ts rename to src/stores/global.ts diff --git a/src/stores/index.ts b/src/stores/index.ts index 89aa7421..13587680 100644 --- a/src/stores/index.ts +++ b/src/stores/index.ts @@ -12,6 +12,6 @@ export default pinia // 所有的 store import { useAuthStore } from './auth' import { useUserStore } from './user' -import { useGlobalSettingsStore } from './globalSettings' +import { useGlobalSettingsStore } from './global' export { useAuthStore, useUserStore, useGlobalSettingsStore }