0

I tried to disable or edit the invalid Pop over messages using a traditional Bootstrap method. But it doesn't work like that.

<b-form-input class="form-control" type="email"  required="" placeholder="username"
 oninvalid="this.setCustomValidity('Please Enter valid email')"
 oninput="setCustomValidity('')"></b-form-input>
zemunkh
  • 662
  • 7
  • 13

1 Answers1

0

But answer as follows.

To disable popover messages

<b-form-input id="email" v-model="form.email" type="email" :state="null" 
         placeholder="Enter email"></b-form-input>

To add custom messages, you should change a property :state as true or false and add label to make sure what is error.

zemunkh
  • 662
  • 7
  • 13