Angular 11 Wie man SkiplocationChange verwendet
// on a link
<a href="#" [skipLocationChange]="true" ...>Link</a>
// or with Router
this.router.navigate([`/link`], { skipLocationChange: true });
Unsightly Unicorn