使用括号语法提供输入值不起作用。但是,当我删除括号时,它确实如此。为什么是这样?
子组件:
@Component({
selector: 'app-child',
template: `<p>My name is {{name}}</p>`,
})
export class ChildComponent {
@Input() name;
}
父组件模板 - 这不起作用,为什么??:
<p>Parent component</p>
<app-child [name]='Peter'></app-child>
父组件模板 - 这项工作的:
<p>Parent component</p>
<app-child name='Peter'></app-child>