组件代码:
@Component({
selector: 'app-my-component',
template: `
You typed: {{text}}
`
})
export class MyComponent {
text: string = "";
}
组件代码:
@Component({
selector: 'app-my-component',
template: `
You typed: {{text}}
`
})
export class MyComponent {
text: string = "";
onTextChange(value: string) {
this.text = value;
}
}