当我尝试重定向到观察者中的其他路由器时,控制台会给我这个错误:
有人可以帮助我并说明为什么会这样吗?
谢谢!
watch: {
lifes : function() {
console.log('lifes watcher work')
if(this.lifes === 0) {
this.$route.router.go('/ending');
}
}
},
我找到其他方式,例如this.router.go('/ending')
或router.go('/ending')
,但也无效。
ERROR:
[Vue warn]: Error in callback for watcher "lifes": "TypeError: Cannot read property 'go' of undefined"