[Vuejs]-Handling state and invalid-feedback attributes in BootstrapVue to reject deleted value in input field

0👍

Solution found:

change this line:

res = (this.fruit != null || this.fruit == '');

to this:

res = (this.fruit != null && this.fruit.length > 0);

Leave a comment