Vue Error in v-on handler: “TypeError: Cannot read property ‘resetFields’ of undefined”。【解决办法】

今天爱分享给大家带来Vue Error in v-on handler: “TypeError: Cannot read property ‘resetFields’ of undefined”。【解决办法】,希望能够帮助到大家。

原因:mouted加载table数据以后,隐藏的弹出框并没有编译渲染紧DOM里,所以click弹出$refs并没有获取到DOM元素,导致’resetFields’ of undefined。
解决方案:
方案1:

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

方案2:

if(this.$refs[formName] !=== undefined) {
	this.$refs[formName].resetFields();
}

人已赞赏
前端

Vue Missing required prop: “value”。【解决办法】

2020-11-8 18:40:12

前端

Vue Invalid prop: type check failed for prop “rowStyle”. Expected Object, Function, got String.【解决办法】

2020-11-8 18:43:07

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
'); })();