如何在 Angular Material 中获取活动选项卡

How to get the active tab In Angular Material

我想找到 active tab in material 并保存在 cookie 中:

var activeTab = $cookieStore.get("active");
$cookieStore.put('active',$scope.selectedIndex);
console.log(active);

如何在 angular material

中找到活动选项卡

这里是codepen例子

使用 md-on-select="onTabChanges(tabNumber)" 您可以“观察”选项卡更改。

此代码笔中的示例:Angular Material Selected Tab