Skip to content

Instantly share code, notes, and snippets.

@realtomaszkula
Last active January 11, 2019 09:54
Show Gist options
  • Save realtomaszkula/636ed98ccc94c2e58d9a92bcc1f9c3a8 to your computer and use it in GitHub Desktop.
Save realtomaszkula/636ed98ccc94c2e58d9a92bcc1f9c3a8 to your computer and use it in GitHub Desktop.
@Component({
template: `<a (click)="navigateWithState()">Go</a>`,
})
export class AppComponent {
constructor(public router: Router) {}
navigateWithState() {
this.router.navigateByUrl('/123', { state: { hello: 'world' } });
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment