有没有办法强制设置绑定.一个用例示例:
var el2 = new MyElement();
el2.myProp = this.$.anotherElement.anotherProp
Run Code Online (Sandbox Code Playgroud)
这不会设置绑定,它只是分配值或对象.我想找到一种方法来做类似的事情:
el2.myProp.bindTo(this.$.anotherElement.anotherProp)
Run Code Online (Sandbox Code Playgroud)
可能?