Reputation: 254
So I added the simplest example of mat-menu to my project but from some reason when I click on the Menu button it is reloading the page. Here is the code.
<button mat-button [matMenuTriggerFor]="menu">Menu</button>
<mat-menu #menu="matMenu">
<button mat-menu-item>Item 1</button>
<button mat-menu-item>Item 2</button>
</mat-menu>
Upvotes: 2
Views: 934