1. 程式人生 > >element-ui報錯Cannot read property 'resetFields' of undefined

element-ui報錯Cannot read property 'resetFields' of undefined

[Vue warn]: Error in event handler for "click": "TypeError: Cannot read property 'resetFields' of undefined"

這個錯誤是因為你的dom元素還沒有載入完,你就想使用resetFields置空。也就是你寫的this.$refs['addForm'].resetFields();這個裡面的addForm還沒有加載出來呢。

解決:

this.$nextTick(()=>{

   this.$refs['addForm'].resetFields();

})