Angular 使用 Flex 布局
Angular with Flex-Layout
我想开始使用 Angular 和 Flex-Layout 框架。我通过 npm 安装了 flex-layout 并将其导入 app.module.ts 中,如下所示:
import { FlexLayoutModule } from '@angular/flex-layout';
imports: [
FlexLayoutModule
],
IntelliJ 总是说:"Class FlexLayoutModule is not an Angular module"
这是一个已知问题吗?如何使用这个框架?
解决了问题。
Maybe you could try to remove your node_modules and package-lock.json and then npm install again
我想开始使用 Angular 和 Flex-Layout 框架。我通过 npm 安装了 flex-layout 并将其导入 app.module.ts 中,如下所示:
import { FlexLayoutModule } from '@angular/flex-layout';
imports: [
FlexLayoutModule
],
IntelliJ 总是说:"Class FlexLayoutModule is not an Angular module"
这是一个已知问题吗?如何使用这个框架?
Maybe you could try to remove your node_modules and package-lock.json and then npm install again