[SOLVED] Vuex loading data Meteor call not update UI

I’m loading part of my data using methods and passing this data to my vuex store. but my component does not randerize the state change when made within the method callback. How can I solve this?

  getBalance({commit}) {
    Meteor.call("store.balance", recipientId, (err, result) => {
      commit('CHANGE_BALANCE', result)
    })
  }

Do you have a full reproduction available?