1
<template is="dom-bind" id="app">
<div>{{title}}</div>
<my-element></my-element>
</template>
我可以在my-element
強制自動綁定模板重繪嗎?使用Polymer更改自動綁定模板元素
我能得到的模板,但改變它不會觸發重繪:
var app = document.querySelector('#app');
app.title = 'Zaphod';
你說得對,我的代碼工作。我的問題是在其他地方,你的答案幫助我達到那裏。感謝名單 –