我已经定义了2个路由LoginComponent和DashboardComponent,它们是一个主要组件,它是基础组件appComponent(我还没用过)
我想要的是:
我所做的是:
这是我的代码:
路线:
const appRoutes: Routes = [
{ path: 'login', component: LoginComponent },
{ path: 'dashboard', component: DashboardComponent },
{ path: '', redirectTo: '/login',pathMatch:'full' },
{ path: '**', component: NotFound404Component }
];
用于登录功能:
this.router.navigate(['/dashboard']);
任何帮助都会得到满足。