I use this code to watch mutations, but the CB triggers only if old and new Values would NOT be equal,
VX.store.watch(
getters => getters.focusedOn,
( value, oldValue ) => console.log( oldValue, value )
);
I get results like:
1 0
but I'm looking even for results like:
1 1
How can I get them? (even without using watch)
p.s. and I Don't like to convert my simple "focusedOn" to an object or so.
p.s. The createLogger reports all kind of mutations, so it made me thinking that there should be a way to get all of them.
question from:
https://stackoverflow.com/questions/65647502/watch-on-store-mutations-even-for-same-values 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…