当我为我的元素赋予驼峰式属性时,它们不起作用。没有错误或警告。但是当我传递所有小写属性时,它们运行良好。有人可以解释这种行为吗?
我的index.html:
<body>
<app-root></app-root>
<user-poll age="25" personName="John doe"></user-poll>//an angular element
</body>
user-poll.component.ts
@Input() a: number;//=25, works well
@Input() personName: string;//always undefined