fix: check window.$message

This commit is contained in:
chansee97 2024-06-07 21:39:46 +08:00
parent 02ce6568b7
commit ec85ffaea2

View File

@ -66,7 +66,12 @@ export const useRouteStore = defineStore('route-store', {
// Initialize route information
const rowRoutes = await this.initRouteInfo()
if (!rowRoutes) {
// 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