[Vuejs]-Timing of validations with vuetify rules

0👍

I was able to fix this by moving the icon update to a computed value called during the “updated” cycle:

updated: function() {
  this.$emit('dealer-info-complete', this.$refs.dealerAppform.value)
},

Leave a comment