I'm using the angular Material Sidenav it works well but with the problem that after select an option the menu still opens. It's so weird that this is mean to use as a navigation for small devices and the doc doesn't have any example using links
App.component
<md-sidenav-container>
<md-sidenav #sidenav class="sidenav" mode="over">
<ul class="sidenav">
<li class="sidenav__list">
<a class="sidenav__list__link " [routerLink]="['about']" >about</a>
</li>
</ul>
</md-sidenav>
<header>
<div fxHide fxShow.lt-sm>
<button class="btn__sidenav" md-button (click)="sidenav.toggle()">
<i class="material-icons md-36">menu</i>
</button>
</div>
</ng-template>
</header>
<div class="container">
<router-outlet></router-outlet>
</div>
<wh-footer></wh-footer>
</md-sidenav-container>
basically, I have to load content for the about page and close the menu when the link is clicked, I dont know if I have to do manually or are there any directive or property that I can use