vue.runtime.esm.js?2b0e:4605 [Vue warn]: Error in mounted hook: "TypeError: this.getEditInfo is not a function"
时间: 2024-05-19 22:05:00 浏览: 36
Vue 报错TypeError: this.$set is not a function 的解决方法
5星 · 资源好评率100%
这个错误是因为在 Vue 实例中的 mounted 钩子中调用了一个不存在的函数 getEditInfo。请检查你的代码,确保 getEditInfo 函数被正确地定义和引入。另外,也要注意函数是否在 Vue 实例中正确地绑定了 this。如果问题仍然存在,请提供更多的代码和上下文信息以便更好地帮助你解决问题。
阅读全文