我在其中一个标签中创建了标签和扩展面板 .
My problem 是当我选择包含面板的选项卡时,它们会折叠但面板的内容是可见的 .
我已经看到它's an issue in angular material 5 and was solved in Angular Material 6.0.0.beta0 but for the moment I can' t更新我的package.json . 所以我在Angular Material 5v中尝试了一种解决方法,提到here但它对我不起作用 .
这就是我做的
在我的父组件中,我使用 Input() 将 selectedIndex 值传递给组件
在 app-experiences.html
Cycle ingénieur en informatique
Cycle préparatoire integré
在 app-experiences.ts
export class ExperiencesComponent implements OnInit {
@Input() selectedTabIndex: number;
constructor() { }
panelOpenState = true;
ngOnInit() {
}
}
如何在不使用Angular Material 5.2.0的情况下将面板展开选项设置为false?