소스 검색

后台退出登录跳转

zhanghao 3 달 전
부모
커밋
390d33f837
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      src/layout/components/Navbar.vue

+ 3 - 1
src/layout/components/Navbar.vue

@@ -98,7 +98,9 @@ export default {
         type: 'warning'
       }).then(() => {
         this.$store.dispatch('LogOut').then(() => {
-          location.href = '/login';
+          this.$router.push({
+            path: '/login' // 将路径完全替换为 /index
+          });
         })
       }).catch(() => {});
     }