// #docregion
import { Component, Input } from '@angular/core';
@Component({
selector: 'name-child',
template: `
"{{name}}"
`
})
export class NameChildComponent {
_name: string = '';
@Input()
set name(name: string) {
this._name = (name && name.trim()) || '';
}
get name() { return this._name; }
}
// #enddocregion