0👍
✅
This is happening because your processes
data is using cpk: this.minuendCPK
. That wil not be reactive, and will just copy the value at the moment it is instantiated.
To fix this, make your processes
computed, so it will track changes to cpk: this.minuendCPK
.
Source:stackexchange.com