'router-outlet' is not a known element

后端 未结 12 1129
无人及你
无人及你 2021-01-30 19:36

I have a mvc 5 project with a angular frontend . I wanted to add routing as described in this tutorial https://angular.io/guide/router. So in my _Layout.cshtml I ad

12条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-30 19:58

    Here is the Quick and Simple Solution if anyone is getting the error:

    "'router-outlet' is not a known element" in angular project,

    Then,

    Just go to the "app.module.ts" file & add the following Line:

    import { AppRoutingModule } from './app-routing.module';
    

    And also 'AppRoutingModule' in imports.

提交回复
热议问题