<mat-form-field>
<mat-select placeholder="Toppings" multiple>
<mat-option></mat-option>
</mat-select>
</mat-form-field>
我正在使用mat select multi select下拉列表。我已经进口了 从'@ angular / material'导入{MatButtonModule,MatCheckboxModule,MatSelect}; 从'@ angular / material /'导入{MatFormFieldControl};
但是我遇到此错误,无法继续。
答案 0 :(得分:0)
要使用CdkOverlayOrigin指令,您需要将其模块导入到您的应用程序中:
import { OverlayModule } from '@angular/cdk/overlay';
...
@NgModule({
imports: [
OverlayModule,
...
],
...
})
export class AppModule { }