I tried the code below
<input value="{{input}}">
input property inside javascript Polymer({property: {}})
input: {
observer: "_input",
type: String,
value: "Z"
}
initially <input> show "Z" as its value but input property inside javascript Polymer({property: {}}) is not updating with the change in the <input> & observer is not called
i tried this also but not working
<input bind-value="{{input}}">
How i do this in Polymer-1.0 ?