[Vuejs]-Useing VueJS Multiselect Plugin Need to reset the dropdown selection on form submit success

0👍

I was able to this by assigneing the null to v modal in finally of form submit function call.

.finally(() => {
      this.countryCodeList = null;
    })

Leave a comment