mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 03:07:36 +08:00
Form: 🔧 fixed validation issue with dynamic rules (fixed #1317)
This commit is contained in:
parent
75d248e107
commit
bfab5cd9ed
@ -23,6 +23,11 @@
|
||||
},
|
||||
inline: Boolean
|
||||
},
|
||||
watch: {
|
||||
rules() {
|
||||
this.validate();
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
fields: []
|
||||
@ -54,7 +59,7 @@
|
||||
if (errors) {
|
||||
valid = false;
|
||||
}
|
||||
if (index === this.fields.length - 1) {
|
||||
if (typeof callback === 'function' && index === this.fields.length - 1) {
|
||||
callback(valid);
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user