Angular Material在chrome浏览器上不起作用,我的代码是
<div class="col-sm-3">
<mat-select [(ngModel)]="reportFilterObj.VisitorDaylist" placeholder="Select Filter type">
<mat-option *ngFor="let rpt of ReportType" [value]="rpt">
{{rpt}}
</mat-option>
</mat-select>
</div>