From ec85ffaea2d801980f69b97d49deaab39c4392f6 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Fri, 7 Jun 2024 21:39:46 +0800 Subject: [PATCH] fix: check `window.$message` --- src/store/router/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/store/router/index.ts b/src/store/router/index.ts index edc6e57..80a2663 100644 --- a/src/store/router/index.ts +++ b/src/store/router/index.ts @@ -66,7 +66,12 @@ export const useRouteStore = defineStore('route-store', { // Initialize route information const rowRoutes = await this.initRouteInfo() if (!rowRoutes) { - window.$message.error($t(`app.getRouteError`)) + // Check if the message variable is defined + if (window.$message) + window.$message.error($t(`app.getRouteError`)) + else + throw new Error($t(`app.getRouteError`)) + return } this.rowRoutes = rowRoutes