I am using Angular 2 with Angular Material. Looking at the documentation, I am trying to get the select to have a default value as oppose to an empty place holder.
Use [(ngModel)]:
[(ngModel)]
One Two
Component:
selectedOption = '1';
DEMO
Edit #1:
Since Material2.0.0#beta10 (specifically this PR) you can select a value using the value property of MatSelect:
value
MatSelect
Note that you can also use it with two-way data binding -> [(value)].