I passed data prom parent to child
`<tag-editor[item]="item"></tag-editor>`
Item here has data
Child component:
export class TagEditorComponent implements OnInit, OnChanges {
@Input() private item: Tag;
ngOnInit() {
console.log(this.item)
}
ngOnChanges() {
console.log(this.item)
}
But i got only 2 undefined.
How can i fix it?