04-监听路由变化 发表于 2018-05-03 | 分类于 前端-08-vue | Vue 2.2 中引入的 beforeRouteUpdate 守卫:1234567const User = { template: '...', beforeRouteUpdate (to, from, next) { // react to route changes... // don't forget to call next() }} don’t forget to call ==next()==