router.js 175 B

12345678
  1. export default ({app, store}) => {
  2. app.router.beforeEach((to, from, next)=> {
  3. if (process.client) {
  4. console.log("location.href", to, from)
  5. }
  6. next()
  7. })
  8. }