Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

vuex - watch on store mutations even for same values

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

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

62 comments

56.7k users

...