Guards
Last updated
Was this helpful?
Last updated
Was this helpful?
Interface that a class can implement to be a guard deciding if a route can be activated. If all guards return true
, navigation continues. If any guard returns false
, navigation is cancelled. If any guard returns a , the current navigation is cancelled and a new navigation begins to the returned from the guard.
The following example implements a function that checks whether the current user has permission to activate the requested route
Here, the defined guard function is provided as part of the object in the router configuration: