xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

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, 禁止转载 🈲️,侵权必究⚠️!


posted @ 2021-09-17 17:37  xgqfrms  阅读(59)  评论(0编辑  收藏  举报