Loving riot js but why is "Hello 0" not incrementing on the page in the following code example, and what is the workaround for now?
<my-app>
<p>Hello {myNumber}</p>
this.myNumber = 0;
var thisApp = this;
setInterval(
function(){
thisApp.myNumber++;
},
1000
);
</my-app>