[Vuejs]-Update json property dynamically

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.

Leave a comment