refresh the page on button click without reload in angular 11 code example
Example: angular refresh page without reloading
this.router.navigate(['path/to'])
.then(() => {
window.location.reload();
});
this.router.navigate(['path/to'])
.then(() => {
window.location.reload();
});