I am using newest version mat-select v 16. When a particular option is selected and we click the select drop-down the selected option shouldn't show in options list. This is what I am using in html.
<mat-form-field>
<mat-select formControlName="value" selected="option1">
<mat-option *ngFor="let item of options"
[value]="item.value">{{ item.label }}</mat-option>
</mat-select>
</mat-form-field>
items consist of option1, option2, option3.
What do I need to use so that whenever option1 is in selected only option2 and option3 should show in dropdown??
Please reply!! TIA!!!