Any plan to support '@Input' like below in ts: @Component({ selector: 'child-selector', template: 'child.component.html' }) export class ChildComponent { @Input() title:string; }
Any plan to support '@input' like below in ts:
@component({
selector: 'child-selector',
template: 'child.component.html'
})
export class ChildComponent {
@input() title:string;
}