[Vuejs]-On form button click success, form validations fire again

1👍

You should wait for the Meteor.call() to complete, then reset the validation state.

For example

Meteor.call('email.send', this.user.email, subject, nameWithEmailText, (error, result) => {
  this.user.name = ''
  this.user.email = ''
  this.user.message = ''

  this.$v.$reset()
})
👤Phil

Leave a comment