【发布时间】:2020-10-14 19:22:31
【问题描述】:
我有一个带有mat-tab-group 的页面,它位于/transactions 的路线上。
<mat-tab-group>
<mat-tab label="Shipments">
<ng-template matTabContent>
shipment content
</ng-template>
</mat-tab>
<mat-tab label="Refunds">
<ng-template matTabContent>
Refund content
</ng-template>
</mat-tab>
<mat-tab label="Backorders">
<ng-template matTabContent>
Backorders content
</ng-template>
</mat-tab>
</mat-tab-group>
我希望能够选择使用路由参数显示哪个选项卡,以便我可以链接到/transactions/refunds 或/transactions/?type='refunds' 或类似的东西,并导航到相应选项卡处于活动状态的交易页面。
【问题讨论】:
-
我看到了,但它看起来更像是使用选项卡导航到路线而不是反向导航。我再看一遍。
标签: angular angular-material angular-router