const routes: Routes = [ { path: "home", component: HomeComponent }, { path: "about", component: AboutComponent }, { // '/' 可以不用写 / path: "", // 重定向 redirectTo: "home", // 完全匹配 pathMatch: "full" }];