Denys Alexieiev
Denys Alexieiev

Reputation: 254

Angular material mat-menu reloading the page

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

Answers (1)

Denys Alexieiev
Denys Alexieiev

Reputation: 254

Resolved myself. type="button" made the trick

Upvotes: 2

Related Questions