(vue)解决“[Vue warn]: Error in v-on handler: “TypeError: Cannot read property ‘validate‘ of undefined“”

有的代码会写成:

this.$refs[formName].resetFields();
this.$refs[formName].validate((valid) => {
...
});

更改为:

this.$refs.formName.resetFields();
this.$refs.formName.validate((valid) => {
...
});
Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐