You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
882 B

2 years ago
2 years ago
  1. export default ({ app, store }) => {
  2. // app.router.beforeEach((to, from, next) => {
  3. // console.log("beforeEach");
  4. // // sessionStorage.setItem("storeCache",JSON.stringify(store.state))
  5. // next();
  6. // // store.dispatch("toggleOrgID").then(() => {
  7. // // next();
  8. // // }).catch(() => {
  9. // // next();
  10. // // });
  11. // });
  12. // app.router.afterEach((to, from, next) => {
  13. // console.log("afterEach");
  14. // // let storeCache = sessionStorage.getItem("storeCache")
  15. // // if(storeCache){
  16. // // // 将session中的store数据替换到store中
  17. // // store.replaceState(JSON.parse(storeCache));
  18. // // }
  19. // next();
  20. // // store.dispatch("toggleOrgID").then(() => {
  21. // // next();
  22. // // }).catch(() => {
  23. // // next();
  24. // // });
  25. // });
  26. }