vue.esm.js?efeb:628 [Vue warn]: Error in v-on handler: "Error: [iView warn]: must call validateField

时间:2024-04-09 19:01:19

初始化input框中的内容,并进行初始化,出现

vue.esm.js?efeb:628 [Vue warn]: Error in v-on handler: "Error: [iView warn]: must call validateField

原因是因为验证的时候,实际值虽然初始化了但是实际上还没渲染到dom上,因此应该改使用nextTick,即等元素被初始化成功后才进行验证

                    this.params.frequence = '15';

                    this.$nextTick(()=>{

                        this.$refs.newTest.validateField('frequence')

                    })