Notifications
Clear all
BugOverflow
1
Posty
1
Users
0
Reactions
613
Widok
0
26/01/2022 7:51 am
Topic starter
example
1 Answer
0
26/01/2022 7:51 am
Topic starter
const errors = [];
this.$refs.form.inputs.forEach(e => {
if (e.errorBucket && e.errorBucket.length) {
errors.push(...e.errorBucket);
}
},
);
this.errors = errors;