📌  相关文章
📜  onclick 在 Angular 中添加活动类 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:29.493000             🧑  作者: Mango

代码示例1
// if needed add a boolean to the array and use it
for(let i = 0; i < this.subModules.length; i++){
    this.subModules[i].active = false;
}


On The component

activateClass(subModule){
  subModule.active = !subModule.active;    
}