[Vuejs]-Difficulty with Vue transitions on rendered elements

0👍

You should set inviteResponse = '' somewhere in your code in order to hide your message. So that v-if statement becomes false.

For example, in your callback function after receiving server response you can
if (this.inviteResponse) {
setTimeout(function() { this.inviteResponse = '' }, 3000);
}

Leave a comment