I have this:
<template id="repeat" is="dom-repeat" items="[[model]]" as="day">
<component model="[[day]]"></component>
</template>
It's recieving model from a iron-local-storage load. When I push something to my localstorage using localStorage.setItem, I want this dom-repeat to update and display the new item I pushed.
Right now it only appears AFTER I refresh the page, because it reloads everything from local storage.
I tried using this.$.repeat.render(); but that didn't work. I want the dom-repeat to display the new object instantly without having to refresh the page.
Is this possible?
Thanks!