1. const routes: Routes = [
    2. {
    3. path: "home",
    4. component: HomeComponent
    5. },
    6. {
    7. path: "about",
    8. component: AboutComponent
    9. },
    10. {
    11. // '/' 可以不用写 /
    12. path: "",
    13. // 重定向
    14. redirectTo: "home",
    15. // 完全匹配
    16. pathMatch: "full"
    17. }
    18. ];