试试这个:
import { NgModule } from "@angular/core";
import { Routes, RouterModule } from "@angular/router";
import { LayoutComponent } from "./layout.component";
const appRoutes: Routes = [{
path: "",
component: LayoutComponent,
children: [{
path: "",
redirectTo: "welcome"
},
{
path: "welcome",
loadChildren: "./welcome/welcome.module#WelcomeModule"(your path)
},
{
path: "home",
loadChildren: "./home/home.module#HomeModule"(your path)
}
}
];
在welcome.html中
<button class="btn btn-success" type="button" id="loginButton" routerLink="/welcome" [routerLinkActive]="['router-link-active']">Sign In</button>