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