{
path:'news',
component:NewsComponent,
children:[
{
path:"moring",
component:MoringComponent,
},
{
path:"night",
component:NightComponent
},{
path:"",
redirectTo:"moring",
pathMatch:"full"
}
]
}
在俘虏有对应的组件中的html中应该添加
<router-outlet></router-outlet>