data () {
return {
leavpath: ''
}
},
beforeRouteEnter (to, from, next) {
next(vm => {
if (from.fullPath === '/路径') {
vm.leavpath = '/路径'
}
})
}
from.fullPath:可以获取到进入页面的路径。
beforeRouteEnter 守卫 不能 访问 this,通过传一个回调给 next来访问组件实例。