[Vuejs]-Vue cannot submit the form and return the error RangeError: Maximum call stack size exceeded

0👍

I have found my mistakes – this.$refs.ruleForm.validateField('user'); it shouldn’t be validateField(‘user’) , that’s why this part will be call infinitely and I replace this code with callback() so that it will return directly

Leave a comment