Vue路由重定向

  • 路由对象$router
  • 路由跳转方法:push()
  • 语法:$router.push('url')
  • 分写与合写方式的重定向写法不一样

分写形式的路由中:

  • 可以找到自己创建的路由对象,加上 myrouter.push('想要重定向的path')
  • 可以在vue实例中添加钩子函数:
    beforeCreate:function(){ this.$router.push('想要重定向的path') }

合写形式的路由中:

  • 我们再实例中的router配置项没有名字,所以只能用钩子函数的方法重定向
    beforeCreate:function(){ this.$router.push('想要重定向的path') }

你可能感兴趣的:(Vue路由重定向)