I wonder how to redirect a children route conditionally. I’ve tried many ways but none of them works.
I’m using a state from the store as the condition to redirect the children routes. I’ve exported my store from the file it is in and import it in the routes.js:
import store from ‘@/store’
Here is the code to handle the routes:
JavaScript
x
32
32
1
{
2
path: '/import',
3
component: Layout,
4
redirect: '/import/table',
5
name: 'Import',
6
meta: { title: 'Import', icon: 'el-icon-right' },
7
children: [
8
{
9
path: 'tree',
10
name: 'Tree',
11
component: () =>
12
import('@/views/tree/import'),
13
beforeEach: (to,from,next) => {
14
//store.state.userRole = 'Admin' redirect the route, otherwise not redirect.
15
if(store.state.userRole = 'Admin') {
16
next();
17
}
18
else {
19
next(false);
20
}
21
meta: { title: 'Create form', icon: 'el-icon-circle-plus-outline' },
22
},
23
24
{
25
path: 'table',
26
name: 'Table',
27
component: () => import('@/views/table/importList'),
28
meta: { title: 'List', icon: 'el-icon-document' },
29
},
30
]
31
}
32
Advertisement
Answer
The proper name of the per-route guard is beforeEnter
– not beforeEach
. https://router.vuejs.org/guide/advanced/navigation-guards.html#per-route-guard