VUE前端报错
Error in updated hook: "TypeError: this.$el.querySelectorAll is not a function"
TypeError: data.reduce is not a function
出错原因:data里面定义了下面的字段,从props里面拷贝过来,使用了default()函数
newXXXList: {
default() {
return [];
}
},
解决办法,使用newXXXList:[]定义就可以了。
VUE前端报错
Error in updated hook: "TypeError: this.$el.querySelectorAll is not a function"
TypeError: data.reduce is not a function
出错原因:data里面定义了下面的字段,从props里面拷贝过来,使用了default()函数
newXXXList: {
default() {
return [];
}
},
解决办法,使用newXXXList:[]定义就可以了。