我有我的自定义组件:
@Component({
selector: 'my-custom-component',
templateUrl: './my-custom-component.html',
styleUrls: ['./my-custom-component.css']
})
export class MyCustomComponent {
constructor() {
console.log('myCustomComponent');
}
}
我可以这样使用它:
<my-custom-component></my-custom-component>
但是我怎样才能传递一个变量呢? 例如:
<my-custom-component custom-title="My Title"></my-custom-component>
然后在我的组件代码中使用它?