i have a component who has an @Input with alias
export class MyComponent() {
@Input('my-alias') alias: string
}
And i want get this @Input like that:
<app-mycomponent [my-alias]="'my alias'"></app-mycomponent>
But it's not work. I must configure something?