Commit c7cfcc36 authored by XinYong Chen's avatar XinYong Chen Committed by cinwell.li

Modify document error (#1629)

parent af0d7288
...@@ -766,7 +766,7 @@ Form component allows you to verify your data, helping you find and correct erro ...@@ -766,7 +766,7 @@ Form component allows you to verify your data, helping you find and correct erro
}, },
methods: { methods: {
handleSubmit3(ev) { handleSubmit3(ev) {
this.$refs.ruleForm.validate((valid) => { this.$refs.dynamicForm.validate((valid) => {
if (valid) { if (valid) {
alert('submit!'); alert('submit!');
} else { } else {
......
...@@ -756,7 +756,7 @@ ...@@ -756,7 +756,7 @@
}, },
methods: { methods: {
handleSubmit3(ev) { handleSubmit3(ev) {
this.$refs.ruleForm.validate((valid) => { this.$refs.dynamicForm.validate((valid) => {
if (valid) { if (valid) {
alert('submit!'); alert('submit!');
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment