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>
Source:stackexchange.com
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>