使用Mat选择角度5模板解析错误

时间:2018-11-20 11:29:32

标签: angular-material angular5

enter image description here

   <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};

但是我遇到此错误,无法继续。

1 个答案:

答案 0 :(得分:0)

要使用CdkOverlayOrigin指令,您需要将其模块导入到您的应用程序中:

import { OverlayModule } from '@angular/cdk/overlay';
...

@NgModule({
    imports: [
        OverlayModule,
        ...
    ],
    ...
})
export class AppModule { }