我想将用户成功验证后重定向到他来自的位置。我看到一个similar question确实可以满足我的需求,但是,我想知道您将如何以“ Nuxt”方式进行操作。有人知道吗?
这是我的中间件尝试:
export default function ({ store, redirect }) {
const loggedIn = store.state.currentUser
if (!loggedIn) {
const loginpath = window.location.pathname
// next({ name: 'Login', query: { from: loginpath } }); <----- how to write this part
return redirect('/login')
}