Angular CLI项目加载组件作为基本URL

时间:2017-12-07 01:07:20

标签: angular typescript angular-cli

我有一个Angular CLI项目,我使用多个组件构建,并通过FileZilla上传到我的学校域。我想要它,以便在加载应用程序时,它重定向到HomeComponent而不是AppComponent。我该怎么做才能做到这一点?

1 个答案:

答案 0 :(得分:0)

在路由器中设置到主组件URL的默认路由。

const appRoutes: Routes = [
  { path: '',
    redirectTo: '/home',
    pathMatch: 'full'
  },
  { path: 'home', component: HomeComponent },
];