Vue中$router,路由守卫beforeEach 的使用,以及 this.$router.push两种方式的区别
一、$router在Vue实例内部,可以通过$router访问路由实例,即通过调用this.$router.push进行连接跳转。$router.push()传参的两种方式:1、this.$router.push({name:xx,params:{a:xx,b:xx}})//a,b是我们要传递给另一个页面的参数目标页面通过this.$route.params.a或this.$route.param