我正在尝试将<input>
元素放入角材料中<mat-option>
元素的<mat-select>
标签内。但这不允许我在select内的输入上写一些文本。
<mat-form-field>
<mat-select placeholder="Select Group">
<mat-option value="option">
<mat-form-field>
<input matInput placeholder="Input">
</mat-form-field>
</mat-option>
</mat-select>
</mat-form-field>
以上是我所做的。