我正在尝试在我的网站上布置标签,我正在使用 md-tab-group 来实现这一点。我无法将墨条设为默认值,但是,在相应选项卡上写入的内容是可用的。墨水条出现在点击而不是页面的初始位置。下面是我的代码
<md-tab-group dynamicHeight = "true" >
<md-tab id="hello1" label="Tab 1">
<!-- some content here -->
</md-tab>
<md-tab id="hello2" label="Tab 2">
<!-- some content here -->
</md-tab>
</md-tab-group>
我尝试过的解决方案是 a) selectedIndex 在动态生成选项卡时在 md-tab-group 中不起作用 b) Angular Material Tabs SelectedIndex 0 not working
知道我在忽略什么吗?