Which is the correct way to activate a non-default relationship between two routes' data?
- A Resolve guard
- B CanDeactivate guard
- C CanActivateChild guard
- D Router outlet name
Answer
Resolve guard
A Resolve guard fetches data before the route activates, avoiding a flash of an empty view while the component loads its own data.





