Reputation: 9356
I've got a route working with
this.router.navigate(["/approvals", id]);
which navigates to /approvals/[id]
/approvals/[id]
I'm wondering how I can route to /approvals/[id]/users
/approvals/[id]/users
Does anyone know?
Upvotes: 0
Views: 39
Reputation: 43887
this.router.navigate(["/approvals", id, "users"])
Upvotes: 1