VueJS - route.go不起作用

时间:2018-01-29 20:36:04

标签: vue.js router vue-router

当我尝试重定向到观察者中的其他路由器时,控制台会给我这个错误:

有人可以帮助我并说明为什么会这样吗?

谢谢!

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"

0 个答案:

没有答案