如何为 mat mat-autocomplete 设置选项未找到。
下面是我的代码:
<mat-autocomplete #auto="matAutocomplete" [displayWith]="displayFn">
<mat-option *ngFor="let item of items | async" [value]="item">
{{item.value}}
</mat-option>
</mat-autocomplete>
AngularJS 中的等效元素是
<md-autocomplete ...>
<md-item-template>
...
</md-item-template>
<md-not-found>
No item matching "{{myText}}" were found.
</md-not-found>
</md-autocomplete>
mat-autocomplete 中的 AngularJS md-not-found 等效项是什么