diff --git a/uniapp/src/stores/app.ts b/uniapp/src/stores/app.ts index 5d5f0e7c481e158a3fe1b330d6cd2d0c8a253c83..6cdcd9a77d77c00f4ed867745cd5ae1b0bc33f8d 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 || {},