I have a data-bound array (dom-repeat) in a custom Polymer element, and I need to push new data into the array. It\'s not displaying the items, even though it know
dom-repeat
Use Polymer's array mutation methods when pushing items into the array:
this.push('people', {"first": "Jane", "last": "Doe"}); this.push('people', {"first": "Bob", "last": "Smith"});
{{item.first}}
codepen