vue报错集合(持续更新...)

rangeerror:maximum call stack
原因:超过了最大堆栈量(堆栈溢出)。产生的原因时由于过多函数的调用,一般容易在递归中产生
解决:查看代码,是否有写错导致递归,使得函数循环调用导致的错误

You may have an infinite update loop in watcher with expression
原因:vue死循环
解决:https://www.jianshu.com/p/a51fb3694673

[Vue warn]: Failed to resolve async component: function (resolve)
原因:路由定义错误
解决:路由中的 components 改为 component

Cannot convert object to primitive value
解决:JSON.parse(JSON.stringify(val))

你可能感兴趣的:(vue报错集合(持续更新...))