一、配置一个路由模块二、配置模块中的路由 一、配置一个路由模块ng g module views/home --routingng g component views/home 二、配置模块中的路由//home-routing.module.ts { path:"home", loadChildren:()=>import('./views/home/home.module').then(m=>m.HomeModule) }