Parcourir la source

去掉debugger

zhaojijng il y a 3 ans
Parent
commit
a765d0fd61
1 fichiers modifiés avec 0 ajouts et 1 suppressions
  1. 0 1
      src/router/index.ts

+ 0 - 1
src/router/index.ts

@@ -43,7 +43,6 @@ router.beforeEach((to, from, next) => {
     // canUserAccess() 返回 `true` 或 `false`
     // canUserAccess() 返回 `true` 或 `false`
     console.log("to", to);
     console.log("to", to);
     var projectId = to.query.projectId || "";
     var projectId = to.query.projectId || "";
-    debugger;
     projectId && store.commit("setProjectId", projectId);
     projectId && store.commit("setProjectId", projectId);
     next();
     next();
 });
 });