我在我的角度2应用程序中使用材料选择但是上下键不能正常工作,因为它们无法导航到其他选项这里是我的代码
<mat-form-field class="example-full-width">
<mat-select placeholder="Trader Type" formControlName="TraderType">
<mat-option value="Seller">Seller</mat-option>
<mat-option value="Buyer" >Buyer</mat-option>
<mat-option value="Both">Both</mat-option>
</mat-select>
<mat-form-field>
我在我的模块中导入了MatSelectModule 谁能告诉我我错过了什么。