angular 巢狀路由
mylogin.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'mylogin',
template: `
<h1>登入頁</h1>
<a routerLink="/mail">檢視郵件</a>
`
})
export class MyLoginComponent implements OnInit {
constructor() { }
ngOnInit() { }
}
mail.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'mail',
template: `
<h1>郵箱主頁面</h1>
<a routerLink="/mail/outbox">發件箱</a>
<router-outlet></router-outlet>
`
})
export class MailComponent implements OnInit {
constructor() { }
ngOnInit() { }
}
inbox.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'inbox',
template: `
<h1>收件箱</h1>
<ul>
<li>已讀郵件1</li>
<li>已讀郵件2</li>
<li>已讀郵件3</li>
</ul>
`
})
export class InboxComponent implements OnInit {
constructor() { }
ngOnInit() { }
}
outbox.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'outbox',
template: `
<h1>發件箱</h1>
<ul>
<li>已發郵件1</li>
<li>已發郵件2</li>
<li>已發郵件3</li>
</ul>
`
})
export class OutboxComponent implements OnInit {
constructor() { }
ngOnInit() { }
}
app.router.ts
{
path: 'mail',
component: MailComponent,
children:[
{path:'',component:InboxComponent},
{path:'outbox',component:OutboxComponent},
{path:'**',component:NotFoundComponent}
]
},
相關文章
- vue路由巢狀Vue路由巢狀
- vue(19)巢狀路由Vue巢狀路由
- vue-router 巢狀路由Vue巢狀路由
- Vue中的巢狀路由Vue巢狀路由
- Angular 裡使用巢狀 Form 的步驟Angular巢狀ORM
- 3 vite vue-router 路由巢狀ViteVue路由巢狀
- vue學習十四(巢狀路由、命名路由、命名檢視、重定向)Vue巢狀路由
- vue筆記-6 vue中router路由 路由引數的傳遞 巢狀路由Vue筆記路由巢狀
- 4、vue-router之什麼是巢狀路由Vue巢狀路由
- vue 基礎入門筆記 18:路由巢狀Vue筆記路由巢狀
- Angular路由——子路由Angular路由
- Vue-Router學習第二彈動態路由\懶載入\巢狀路由Vue路由巢狀
- Angular路由——輔助路由Angular路由
- Angular路由——路由基礎Angular路由
- Angular路由——路由守衛Angular路由
- 06 . Vue路由簡介,原理,實現及巢狀路由,動態路由,程式設計式導航Vue路由巢狀程式設計
- 淺談Vue-router使用方法及動態路由和巢狀路由的使用Vue路由巢狀
- angular路由傳參Angular路由
- Angular4+路由Angular路由
- 032、Vue3+TypeScript基礎,巢狀子路由和query傳參VueTypeScript巢狀路由
- 列表巢狀操作巢狀
- 使用Angular CLI生成路由Angular路由
- SCSS 巢狀屬性CSS巢狀
- SCSS 巢狀規則CSS巢狀
- 展開巢狀列表巢狀
- Locust 任務巢狀巢狀
- Oracle 巢狀表(轉)Oracle巢狀
- 巢狀類遞迴巢狀遞迴
- 巢狀子查詢巢狀
- Blazor巢狀傳遞Blazor巢狀
- MySQL Join原理分析(緩衝塊巢狀與索引巢狀迴圈)MySql巢狀索引
- html的巢狀規則HTML巢狀
- JavaScript字串引號巢狀JavaScript字串巢狀
- 封裝多型巢狀封裝多型巢狀
- Python .get 巢狀 JSON 值Python巢狀JSON
- repeater中巢狀放入RadioButtonList巢狀
- 【Qt6】巢狀 QWindowQT巢狀
- nginx 如何實現 if 巢狀Nginx巢狀
- vue巢狀元件傳參Vue巢狀元件