Angular - Advanced Patterns
What is wrong with this smart component template?
And dumb component code:
<app-dumb [data]="items" (update)="handleUpdate($event)"></app-dumb>
And dumb component code:
@Input() data: string[]; @Output() update = new EventEmitter(); updateData() { this.data.push('new'); this.update.emit(this.data); }
