Qiita Conference 2025

みのるん (@minorun365)

30代からでも遅くない! 内製開発の世界に飛び込み、最前線で戦うLLMアプリ開発エンジニアになろう

17
21

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 5 years have passed since last update.

vue-routerでログインしていない場合はログインページに戻す処理

Posted at

ログインしているかどうかはvuexを使ってisLoggedというstateに持っている。
ポイントは一度routerという変数にrouterオブジェクトを入れて、からrouter.beforeEachを使って各ルーティングの前にリダイレクト条件を追加するところです。

これはNG:frowning2:

export default new Router({
  routes: [
//
  ],
});

これが正解:relaxed:


import Vue from "vue";
import Router from "vue-router";
import Login from "@/views/login";
import Mypage from "@/views/mypage";
import store from '@/store/index';

Vue.use(Router);

const router = new Router({
  routes: [
    {
      path: "/",
      name: "top",
      component: Login,
      beforeEnter: (to, from, next) => {
        next('/login');
      }
    },
    {
      path: "/login",
      name: "login",
      component: Login
    },
    {
      path: "/mypage",
      name: "mypage",
      component: Mypage
    },
  ]
});

router.beforeEach((to, from, next) => {
  if (to.name === "top" ||to.name === "login") {
    if(store.state.auth.isLogged){
      next('/mypage');
    }else{
      next();
    }
  } else {
    if(store.state.auth.isLogged){
      next();
    }else{
      next('/');
    }
  }
});

export default router;
17
21
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

Qiita Conference 2025 will be held!: 4/23(wed) - 4/25(Fri)

Qiita Conference is the largest tech conference in Qiita!

Keynote Speaker

ymrl、Masanobu Naruse, Takeshi Kano, Junichi Ito, uhyo, Hiroshi Tokumaru, MinoDriven, Minorun, Hiroyuki Sakuraba, tenntenn, drken, konifar

View event details
17
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?