In component class, declare hideme variable (typescript):
export class MyPage{
hideme = {};
constructor(){
this.hideme = {}; // init is required
}
...
Show/hide control in template:
-
show/hide
The content will show/hide
Notes:
hideme not required init because hideme[item.id] is undefined thus !hideme[item.id] will true.