in my angular version of the app, when events caused changes that should be reflected back in the UI, but were undetected (I changed a variable used in the scripts attached to elements)
I needed to do a
this.zone.run(() =>{
this.selectedRow[type] = i;
})
to advise angular that affected scopes should be examined
is there an equivalent in Vue?
1 post - 1 participant