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