Browse Source

修复第一次跳转白屏

pixel 5 years ago
parent
commit
072608215b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      QMPlusVuePage/src/permission.js

+ 1 - 1
QMPlusVuePage/src/permission.js

@@ -18,7 +18,7 @@ router.beforeEach(async(to, from, next) => {
         // 在白名单中的判断情况
     if (whiteList.indexOf(to.name) > -1) {
         if (token) {
-            next({ name: 'dashbord' })
+            next({ path: '/layout/dashbord' })
         } else {
             next()
         }