I know angular is a SPA, but I am just wondering is it possible to reload the page if routerlink does not change. For example, I have a sidemenu navbar with Dashboard button to navigate to dashboard view
[routerLink]="['/merchant/', {outlets: {'page': ['Dashboard']}}]"
And after I navigated to Dashboard, the Dashboard button is not clickable, is there any way I could re-click this dashboard button?
The reason I want to do that is on the dashboard component, I have main view which is the dashboard, contains few md-card. By clicking each md-card, I will do *ngIf to only display the full details of this card. I do have a goBack() button to go back to the dashboard view.
But I also want to click the dashboard button in the sidemenu to navigate back to dashboard page.
Thanks for any help.