export default ({app, store}) => { app.router.beforeEach((to, from, next)=> { if (process.client) { console.log("location.href", to, from) } next() }) }