``` <input value="{{foo}}"> works. ``` however, if I have this model, where the input property is a reference to the element: model = {input: input}; a binding to input.value does not work: ``` <div>{{input.value}}</div> ``` Can this be fixed?
however, if I have this model, where the input property is a reference to the element:
model = {input: input};
a binding to input.value does not work:
Can this be fixed?