router.js 602 B

1234567891011121314151617181920
  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. const token = $cookies.get('shop-token')
  12. if (token) {
  13. store.commit('setUserInfo', $cookies.get('shop-user-info'))
  14. } else {
  15. store.commit('clearUserInfo')
  16. }
  17. next()
  18. })
  19. }