我正在尝试在我的角度项目中使用 ng-sort ,但是我遇到了这个错误
模块“ AppModule”导入的意外值“ AppModule”。请添加@NgModule批注。
我在 app.module.ts
中的代码...
import { AppModule as SortModule } from 'ng-sort';
@NgModule({
declarations: [
AppComponent,
LogInComponent,
HomeComponent,
],
imports: [
...
SortModule,
...
],
providers: [ThemeService],
bootstrap: [AppComponent]
})
export class AppModule { }
此外,我在 clients-mod.module 中完成了此操作,因为我使用了延迟加载
...
import { AppModule as SortModule } from 'ng-sort';
@NgModule({
declarations: [
MainClientComponent,
ClientInfoComponent,
ClientDetailComponent,
ClientsAccComponent,
],
imports: [
...
SortModule
]
})
export class ClientsModModule { }
export class AppModule {
}
提供一些解决此问题的建议。预先感谢。