error in beforecreate hook: "typeerror: this._router.init is not a function"
时间: 2023-04-21 20:03:54 浏览: 265
微信小程序报错:this.setData is not a function的解决办法
这个错误是在beforecreate钩子函数中出现的,错误信息是“TypeError: this._router.init不是一个函数”。可能是因为在Vue实例中没有正确初始化路由器,导致在beforecreate钩子函数中调用路由器的init方法时出现了错误。建议检查Vue实例中的路由器配置是否正确,并确保在beforecreate钩子函数中正确地初始化路由器。
阅读全文