Это мой связанный код:
import { DataTable } from 'primeng/primeng';
@Component({
moduleId: module.id,
templateUrl: 'search.component.html'
})
export class SearchComponent {
@ViewChild(DataTable)
private dataTable: DataTable;
ngAfterViewInit () {
if (this.dataTable) {
console.log("detected");
}
else {
console.log("not detected");
}
}
}
Я пытаюсь забрать свой p-table
компонент.
Любые идеи о причине p-table
не обнаружены?
Очевидно, директива p-table
присутствует в шаблоне.