我试图将css
之类的显示块设置为自定义组件,但无法正常工作。我不知道如何设置它。
我在下面提供了我的代码。如何为此设置CSS样式?任何人都有想法吗?请帮助找到解决方案。
app.component.html
:
<my-custom-cmp #myflag><my-custom-cmp>
app.component.ts
:
@ViewChildren('myflag', {read: ElementRef}) el: QueryList<ElementRef>;
ngOnInit(){
this.el.nativeElement.style.display= 'block';
}
答案 0 :(得分:0)
尝试@ViewChild('myflag') public el: ElementRef;
代替
@ViewChildren('myflag', {read: ElementRef}) el: QueryList<ElementRef>;
。