We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa32c32 commit 91fcf65Copy full SHA for 91fcf65
src/formGenerator.vue
@@ -288,8 +288,10 @@ export default {
288
289
this.$refs.children.forEach(child => {
290
if (child && isFunction(child.validate)) {
291
- fields.push(child)
292
- results.push(child.validate(true))
+ if (child.$refs.child) {
+ fields.push(child.$refs.child)
293
+ results.push(child.validate(true))
294
+ }
295
}
296
})
297
0 commit comments