0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Vue.routerでリダイレクト時にスタックトレースが大変なことになる

Posted at

###vue.routerを使用して認証済以外のアカウントはログイン画面にリダイレクトさせようとしていたら下記のようなエラーが。

image.png

スタックオーバーフローしてる。
私はログイン画面にリダイレクトさせたいだけなんだ…。

rooter.jsの設定(抜粋)

export default new Router({
    // モードの設定
    mode: 'history',
    routes: [
        {
            path: '/login',
            name: login,
            redirect:  '/login',
            component: login
        }
    ]
});

気付いた。
'/login'のパスで'/login'にリダイレクトさせるようにしているから、
/loginにアクセスしたら/loginにリダイレクトして…ん?

redirect: '/login',

はい、要りませんね。
解決。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?