I have a route that is like this:
{ path: '/testpage', ponent: Testpage},
I am using this to limit the route based on a user role like this:
let roles = {"exdir":"/testpage/"};
if (loggedIn){
// return next('/affiliatepage')
return next(roles[user.user.role]);
}
Now, I am trying to make it so that the user with the correct role can access that route plus all subroutes. For example, if I added:
/testpage/subpage
Is that even possible with the way I have it?
I have a route that is like this:
{ path: '/testpage', ponent: Testpage},
I am using this to limit the route based on a user role like this:
let roles = {"exdir":"/testpage/"};
if (loggedIn){
// return next('/affiliatepage')
return next(roles[user.user.role]);
}
Now, I am trying to make it so that the user with the correct role can access that route plus all subroutes. For example, if I added:
/testpage/subpage
Is that even possible with the way I have it?
Share Improve this question edited Dec 19, 2018 at 0:18 Mihai Chelaru 8,32215 gold badges48 silver badges52 bronze badges asked Dec 18, 2018 at 20:35 CarterCarter 1231 gold badge1 silver badge9 bronze badges 1- 1 Sounds like you want nested routes. See router.vuejs/guide/essentials/nested-routes.html – Phil Commented Dec 18, 2018 at 22:37
1 Answer
Reset to default 10The way I use Navigation Guards is with beforeEnter. Some documentation on beforeEnter can be found here I have provided an example below. The if condition will check if the user has a name, you could check for a permission level. If the condition is true, proceed to /something. Otherwise it will redirect you back to home.
// Example of a Nav Guard
export default new Router({
mode: 'history',
routes: [
{
path: '/', // Home
name: 'Home',
ponent: Home
},
{
path: '/something',
name: 'Something',
ponent: Something,
props: true,
// Route Guard
beforeEnter: (to, from, next) => {
if(to.params.blah) {
next() // Take you to /something
} else {
// If params.blah is blank or in your case, does not have permission, redirect back to the home page
next({ name: 'Home' })
}
}
}
]
})
Below is an example method which will set the name for the router and allow the app to continue to /something
methods: {
enterSomething() {
if(this.blah) {
this.$router.push({ name: 'Something', params: { name: this.blah } })
} else {
// Handle else condition logic
}
}
}
Hopefully this helps you set up route guards :)