vue 表单验证this.$refs
表单验证 this.$refs[formName].validate()
formName是form的ref属性 //<el-form :model="modelInfo" :rules="rules" ref="formName">
如果 this.$refs[formName].validate() 方式不识别。需要使用: this.$refs.formName.validate()
本文来自博客园,作者:小李不背锅,转载请注明原文链接:https://www.cnblogs.com/lishilin-glut/p/15614673.html