mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
fix: check window.$message
This commit is contained in:
parent
02ce6568b7
commit
ec85ffaea2
@ -66,7 +66,12 @@ export const useRouteStore = defineStore('route-store', {
|
|||||||
// Initialize route information
|
// Initialize route information
|
||||||
const rowRoutes = await this.initRouteInfo()
|
const rowRoutes = await this.initRouteInfo()
|
||||||
if (!rowRoutes) {
|
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
|
return
|
||||||
}
|
}
|
||||||
this.rowRoutes = rowRoutes
|
this.rowRoutes = rowRoutes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user