Vue warn All In One

Vue warn All In One

ES6 solution

[Vue warn]: Error in mounted hook: "TypeError: Invalid attempt to spread non-iterable instance.

// ❌
this.labelList = [...this.ruleForm.adLabels];

// ✅
+ this.labelList = [...this?.ruleForm?.adLabels ?? []];
// OR 
// ✅
+ this.labelList = this?.ruleForm?.adLabels ?? [];

refs

https://github.com/vuejs/vue-cli/issues/1303#issuecomment-921655366



©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 ️,侵权必究⚠️!


xgqfrms
原文地址:https://www.cnblogs.com/xgqfrms/p/15305649.html