@Component({ selector: 'my-component', template: '<h3> My component </h3>' }) export class MyComponent { @Input() set name(str: string) { this.service.setName(str); console.log(str); } }