不同组件之间的路由跳转流程图 导航被触发(A–>B) 调用A组件内路由守卫beforeRouteLeave(to,from,next) 调用全局路由前置守卫router.beforeEach(to,from,next) 调用B路由独享守卫 beforeEnter(to,from.next) 解析异步路由组件B 调用B的组件内路由守卫beforeRouteEnter(to,from,next) 调用全局路由解析守卫 router.beforeResolve(to,from,next) 导航被确认…