Nuxt:成功验证后重定向到请求的页面吗?

时间:2020-08-03 20:23:18

标签: vuejs2 nuxt.js

我想将用户成功验证后重定向到他来自的位置。我看到一个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')
  }

0 个答案:

没有答案