- Notifications
You must be signed in to change notification settings - Fork 138
Closed
Description
// app-module.ts @NgModule({ imports: [ UIRouterModule.forRoot({ states: [ { name: 'foo.**', url: '/foo', loadChildren: ... } ] }) ], }) export class AppModule {}// foo-module.ts @NgModule({ imports: [ UIRouterModule.forChild({ states: [ { name: 'foo', url: '/foo', component: ... }, { name: 'bar', url: '/bar', component: ... } ] }) ], }) export class FooModule {}Navigation to /bar after foo is loaded produce the following exception:
No component factory found for `BarComponent`.Metadata
Metadata
Assignees
Labels
No labels