如何在ngx-admin-starter-kit中添加新组件及其路由?

时间:2018-08-01 05:03:32

标签: angular6

我想使用ngx-admin主题创建一个全新的Web应用程序。 我创建了一个名为“ OPERATION”的新组件。但是,我无法获得路由。 在布线方面需要帮助。 预先感谢...

1 个答案:

答案 0 :(得分:0)

首先,您需要导入组件,并且需要将组件路由添加到app-routing.module.ts中的路由。 以下是ngx admin app-routing.module.ts中的路由。

 const routes: Routes = [
  {
    path: 'pages',
    loadChildren: () => import('./pages/pages.module')
      .then(m => m.PagesModule),
  },
  {
    path: 'auth',
    component: NbAuthComponent,
    children: [
      {
        path: '',
        component: NbLoginComponent,
      },
      {
        path: 'login',
        component: NbLoginComponent,
      },
      {
        path: 'register',
        component: NbRegisterComponent,
      },
      {
        path: 'logout',
        component: NbLogoutComponent,
      },
      {
        path: 'request-password',
        component: NbRequestPasswordComponent,
      },
      {
        path: 'reset-password',
        component: NbResetPasswordComponent,
      },
    ],
  },
  { path: '', redirectTo: 'pages', pathMatch: 'full' },
  { path: '**', redirectTo: 'pages' },
];