I'm stucked with a problem on creating editable row on bootstrap b-table and veevalidate. Is it possible to create multiple ValidationObservers and validate them by calling one method?
<b-table :items="items">
<template v-slot:cell(foo)="data">
<ValidationObserver>
<ValidationProvider v-slot="{ errors }" rules="required">
<input v-model="data.value" type="text" />
</ValidationProvider>
</ValidationObserver>
</template>
<template v-slot:cell(bar)="data">
<ValidationObserver ref="form">
<ValidationProvider v-slot="{ errors }" rules="required">
<input v-model="data.value" type="text" />
</ValidationProvider>
</ValidationObserver>
</template>
</b-table>