How do I identify which property in the state was mutated? #1386
-
Hi, I have defined my store like this:
I
In the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I would directly use a watcher instead: watch(() => store.platformPositions, (positions) => {
// ...
}) |
Beta Was this translation helpful? Give feedback.
I would directly use a watcher instead: