fxFlex angular flex 布局无法按预期版本 7.0.0-beta.19 工作

fxFlex angular flex layout not working as expected version 7.0.0-beta.19

待办事项:

这是我的代码和我尝试过的代码:

<div fxLayout="row wrap" fxLayoutGap="32px" fxLayoutAlign="start start">
  <ng-container *ngFor="let _ of [1,2,3,4,5,6]">
    <p fxFlex="0 1 calc(33.3% - 32px)">Flex</p>
  </ng-container>
</div>

文档未提供 api 内的重大更改。
有人知道这里出了什么问题吗?
或者我应该在 github 上开一个问题吗?

您忘记在 app.module.ts

中导入 FlexLayoutModule
import { FlexLayoutModule } from '@angular/flex-layout';
import { AppComponent } from './app.component';
import { HelloComponent } from './hello.component';

@NgModule({
  imports:      [ BrowserModule, FormsModule, FlexLayoutModule ],
  declarations: [ AppComponent, HelloComponent ],
  bootstrap:    [ AppComponent ]
})
export class AppModule { }