We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In this example 'lowerprop' works as expected and 'caseSensitiveProp' doesn't get its value
<dom-module id="user-view"> <template> First: <span>{{caseSensitiveProp}}</span><br/> Last: <span>{{lowerprop}}</span> </template> </dom-module> <script> Polymer({ is: 'user-view', properties: { caseSensitiveProp: String, lowerprop: String } }); </script> <user-view caseSensitiveProp="sValue" lowerprop="lValue"></user-view>
The text was updated successfully, but these errors were encountered:
Try:
<user-view case-sensitive-prop="sValue" lowerprop="lValue"></user-view>
For an explanation, see:
https://www.polymer-project.org/0.9/docs/devguide/properties.html#property-name-mapping
Sorry, something went wrong.
No branches or pull requests
In this example 'lowerprop' works as expected and 'caseSensitiveProp' doesn't get its value
The text was updated successfully, but these errors were encountered: