Welcome to 16892 Developer Community-Open, Learning,Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
995 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to 16892 Developer Community-Open, Learning and Share
...