Answers for "angular 11 how to use skipLocationChange"

0

angular 11 how to use skipLocationChange

// on a link
<a href="#" [skipLocationChange]="true" ...>Link</a>

// or with Router
this.router.navigate([`/link`], { skipLocationChange: true });
Posted by: Guest on June-14-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language