[Vuejs]-BootstrapVue VeeValidate – show an extra error message when form is invalid

0👍

Grab the failed state from the ValidationObserver slot props:

<ValidationObserver ref="form" v-slot="{ failed, passes }">
  <div v-if="failed">Invalid Data</div>

<!-- rest of your fields -->
</ValidationObserver>

Leave a comment