From d4ae893c96457351c59d5a45972e9bc1326cde80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E5=81=A5=E4=B9=90?= <690712575@qq.com> Date: Thu, 10 Jul 2025 08:47:51 +0000 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8F=AF=E8=83=BD=E5=9B=BE?= =?UTF-8?q?=E7=89=87=E8=B7=AF=E5=BE=84=E4=BC=9A=E5=87=BA=E7=8E=B0undefined?= =?UTF-8?q?=E7=9A=84url=E5=9F=9F=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 陈健乐 <690712575@qq.com> --- uniapp/src/stores/app.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/uniapp/src/stores/app.ts b/uniapp/src/stores/app.ts index 5d5f0e7c4..6cdcd9a77 100644 --- a/uniapp/src/stores/app.ts +++ b/uniapp/src/stores/app.ts @@ -7,7 +7,9 @@ interface AppSate { export const useAppStore = defineStore({ id: 'appStore', state: (): AppSate => ({ - config: {} + config: { + domain: '' + } }), getters: { getWebsiteConfig: (state) => state.config.website || {}, -- Gitee