迁移到angular 10最新版本时出现错误

时间:2020-10-06 08:19:10

标签: angular typescript angular9 angular10

我已将我的angular应用程序迁移到了最新的angular 10版本。运行代码时出现以下错误:

src / app / app.module.ts:32:5-错误NG6001:NgModule'AppModule'的声明中列出了类'DashboardComponent',但不是指令,组件或管道。从NgModule的声明中将其删除,或添加适当的Angular装饰器。

   src/app/dashboard/dashboard.component.ts:24:14
export class DashboardComponent implements OnInit {
                ~~~~~~~~~~~~~~~~~~
'DashboardComponent' is declared here.

app.module.ts


@NgModule({
  declarations: [
    AppComponent,
    //routingComponents,
    LoginComponent,
    DashboardComponent,
    UserComponent,
    ForgotpasswordComponent
]
imports: [
    BrowserModule,
    AppRoutingModule,
    FormsModule,
    HttpClientModule,
    MomentModule
  ],  
providers: [UserService,AuthserviceService,DashboardService,WebsocketService,NotifyService],
  bootstrap: [AppComponent]
})

该应用在以前的版本(角度8)中运行良好,但是在迁移到角度10版本并执行该操作时,它显示上述错误,任何人都可以就此进行帮助。

0 个答案:

没有答案