verifyemailpage

This commit is contained in:
2025-01-31 14:44:45 +01:00
parent 28c647cac2
commit 7d0b5576e5
6 changed files with 55 additions and 27 deletions

View File

@@ -25,6 +25,13 @@ export default defineRouter(function (/* { store, ssrContext } */) {
// quasar.conf.js -> build -> publicPath
history: createHistory(process.env.VUE_ROUTER_BASE)
})
// to hacia
// from desde
Router.beforeEach((to, from, next) => {
console.log(to)
console.log(from)
next()
})
return Router
})