4.1.5-beta.2
Chrome 68 / macOS 10.13.6
<button @click="val = !val">Flip</button>I expect the data in Vue DevTools to update immediately
Nothing happens; I have to click "Refresh" in DevTools to see the updated value
If the value I'm messing with is being created (doesn't already exist), I have to use Vue.set() or this.$set to set it, and then it becomes reactive in Vue dev tools. I ran into this a few days ago. Hope that helps. If not, sorry!
I as well am having the same issue. When I make changes to my state via normal mutations, it works just fine. Everything is reactive. However, if I use time travel, all future interactions with the same chunk of state data are no longer reactive. 3 days now this issue has been plaguing me. I am manipulating state properly, and only changing keys on objects that already exist (not adding or removing). Even using vue.set() doesn't fix the issue.
I'm having the same issue. this.$set() is not refreshing the devtool value. I have to manually click the refresh button.
This is happened to me as well.
This is happened to me as well.
A hack
watch: {
val() {},
},
Having the same issue.
Windows 10, Chrome 83