Как настроить новый дочерний элемент Angular 8?
@ViewChild('searchText', {read: ElementRef, static: false})
public searchTextInput: ElementRef;
против
@ViewChild('searchText', {read: ElementRef, static: true})
public searchTextInput: ElementRef;
Что лучше? Когда я должен использовать static:true
против static:false
?