项目中有一需求,需要根据不同的页面路径url跳转进行不同的操作,首先需要获得上一页面的url,利用 beforeRouteEnter 这个钩子中的from参数获得之前url的信息,然后给 next 传递回调来访问当前组件的实例.操作代码为: beforeRouteEnter (to, from, next) { console.log(to) console.log(from) if (from.name === null) { //判断是否登录 this.isYJLogin() } }, me…