We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c6952f commit 34858dbCopy full SHA for 34858db
src/router/index.ts
@@ -6,4 +6,8 @@ const router = createRouter({
6
routes: [mainRoutes].concat(baseRoutes)
7
})
8
9
+router.beforeEach((to, from, next) => {
10
+ next()
11
+})
12
+
13
export default router
src/router/router.config.ts
@@ -32,6 +32,7 @@ const Routes: Array<RouteRecordRaw> = [
32
name: 'fault',
33
component: () => import(/* webpackChunkName: "fault" */ '@/views/eoms/fault'),
34
meta: { title: '故障处理方案', hidden: false },
35
36
},
37
{
38
path: "/eoms/alarm",
0 commit comments