預設路由


說明

  1. 輸入網站url時預設的頁面
  2. 相當於網站首頁

程式語法:

const routes: Routes = [
  {
    path: '',
    component: 某個元件
  }
];

程式碼範例:

1.在10.54步中,我們將app-routing.module.ts內的路由設定變更為如下:

const routes: Routes = [
  {
    path: '',
    component: PageAComponent
  },
  {
    path: 'pageB',
    component: PageBComponent
  }
];

2.routes陣列中的第一個物件,path是'',就是預設路由

results matching ""

    No results matching ""