啥是重定向路由?
在用户访问一个特定的地址时,将其重定向到另一个指定的地址。
http://localhost:4200/home
const routes: Routes = [
{ path : ' ', redirectTo:' /home', pathMatch:' full ' },
{ path:'home' , component: 'HomeComponent' }
];