1 beforeEach this.$router.beforeEach((to, from, next) => { //to 即将要进入的目标 //from 当前导航正要离开的路由 //next 必须调用next才可以进行页面跳转 }) 2 vue-navigation