vue-router如何获取上一步的url路径?

router.beforeEach((to, from, next) => {
  // to 和 from 都是 路由信息对象
  
  // 这里的from.path就是上一步的url的hash值
})

你可能感兴趣的:(vue.js)