router.js 647 B

12345678910111213141516171819202122
  1. import { isCtrlPress } from '@/utils/keyboard'
  2. export default ({ app, store, redirect, $cookies }) => {
  3. app.router.beforeEach((to, from, next) => {
  4. // 在每次路由跳转的时候进行判断
  5. if (isCtrlPress()) {
  6. // 若是 ctrl 按键被按下,则以新窗口打开目标页面
  7. window.open(to.fullPath)
  8. // 并阻止当前页面的跳转
  9. return next(false)
  10. }
  11. let token = ''
  12. if ($cookies.get('can-use-cookie')) token = $cookies.get("token");
  13. if (token) {
  14. store.commit("setUserInfo", $cookies.get("user-info"));
  15. } else {
  16. store.commit("clearUserInfo");
  17. }
  18. next();
  19. })
  20. }