Hi
I was reading through 0.8 PRIMER.md and I encountered these two statements:
If an attribute matches a property listed in the published object, the attribute value will be assigned to a property of the same name on the element instance
In order to bind to camel-case properties of elements, dash-case should be used in the attribute name. Example:
<user-view first-name="{{managerName}}"></user-view>
<!-- will set <user-view>.firstName = this.managerName; -->
Is this dash-to-camel-case conversion applies uniformly to all assignments to published properties in the element tag? If so, then the first statement should not say "property of the same name", right?
Or does it mean that <user-view first-name="John"> and <user-view first-name="{{managerName}}"> are somehow different in this regard?
Thanks,
Artem