I have a simple select option form field in my Angular material project:
component.html
<mat-form-field>
<mat-select [(value)]="modeSelect" placeholder="Mode">
<mat-option value="domain">Domain</mat-option>
<mat-option value="exact">Exact</mat-option>
</mat-select>
</mat-form-field>
Where [(value)]="modeSelect"
is binded to the modeSelect property in the component.ts file
I want to make it so the <mat-option value="domain">Domain</mat-option>
is selected by default on page load.
ng-selected
did not work for me
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…