Angular Nativescript can't navigate in lazy module
问题 Template I used : Nativescript-Tabs-Template When I try to navigate to sibling component (both are in one lazy module) with: showItem() { this.routerExtensions.navigate(["details/"]); } (also done this - not sure if this is ok ) : this.routerExtensions.navigate(["details", { outlets: { searchTab: ['details'] } }]); I get the error : Error: Cannot match any routes. URL Segment: 'details' *But when I navigate with nsRouterLink it works: * <Label text="this works" [nsRouterLink]="['/details']><