router.navigate is not working (Angular6, lazy loading)

前端 未结 3 2338
时光说笑
时光说笑 2021-02-20 11:48

I\'m a newbie for Angular 4+ (currently using v.6). I\'ve been trying to use this.router.navigate([\'/landing\']) function to redirect from login component to l

3条回答
  •  清歌不尽
    2021-02-20 12:14

    try change this:

    {
      path: 'login',
      loadChildren: './login/login.module#LoginModule'
    }
    

    to this:

    {
      path: 'login',
      loadChildren: () => LoginModule
    }
    

提交回复
热议问题