Angular - Component Interaction
Examine this child component code:
And the parent template:
What is the issue with this setup?
@Component({ selector: 'child-comp', template: '{{data}}' }) export class ChildComponent { data: string; }And the parent template:
<child-comp [data]="parentData"></child-comp>
What is the issue with this setup?
