3

I've come across this example where we can see:

<md-menu #menu="mdMenu">

I can't find any reference to the ="mdMenu" part of this template in the docs.

Is there some meaning to this or is it just a mistake on the example?

Renaud
  • 4,569
  • 7
  • 41
  • 72
  • 1
    In the docs you've just linked to, note `#heroForm="ngForm"` - per the linked form docs, *"The variable heroForm is now a reference to the NgForm directive that governs the form as a whole."* – jonrsharpe Oct 05 '17 at 08:28

1 Answers1

1

In the doc [mdMenuTriggerFor]="menu" refers to <md-menu #menu="mdMenu">

and in #menu="mdMenu", mdMenu is the directive exported from Material.

Wandrille
  • 6,267
  • 3
  • 20
  • 43