預設路由
說明
- 輸入網站url時預設的頁面
- 相當於網站首頁
程式語法:
const routes: Routes = [
{
path: '',
component: 某個元件
}
];
程式碼範例:
1.在10.5
第4
步中,我們將app-routing.module.ts
內的路由設定變更為如下:
const routes: Routes = [
{
path: '',
component: PageAComponent
},
{
path: 'pageB',
component: PageBComponent
}
];
2.routes陣列中的第一個物件,path是''
,就是預設路由