Vue 表单校验错误位置自动定位
表单校验失败会生成名为“is-error”的类,据此即可实现自动定位saveToDb() { this.$refs["FormName"].validate((valid) => { if (valid) { //执行操作 }else { setTimeout(() => { var isError = document.getElementsByClassName(&