[Vuejs]-V-model property is updated only after page refresh

0👍

I managed to solve this issue by removing an action from a parent page and placing it in the component’s created hook. I also assign my data properties to getter’s values in this hook.

created() {
    this.loadPlayer();
    this.emailSending = this.playerEmailSending; // getter's value
    this.phoneSending = this.playerPhoneSending; // getter's value
  },

Leave a comment