In a polymer 2.0 project, the value property is not working. There seem to be a few discrepancies between the v0 (1.0) and v1 (2.0) templates. The 2.0 template is using a couple attribute bindings that should be property bindings and a handful of property bindings that should be property bindings
// in 1.0 --
bind-value="{{value}}"
// in 2.0 --
bind-value$="{{value}}"
Expected outcome
Value property is updated, value is formatted per the phoneNumberPattern property
Description
In a polymer 2.0 project, the
value
property is not working. There seem to be a few discrepancies between the v0 (1.0) and v1 (2.0) templates. The 2.0 template is using a couple attribute bindings that should be property bindings and a handful of property bindings that should be property bindingsExpected outcome
Value property is updated, value is formatted per the
phoneNumberPattern
propertyActual outcome
Value property is not updated