export default ({ app, store }) => { // app.router.beforeEach((to, from, next) => { // console.log("beforeEach"); // // sessionStorage.setItem("storeCache",JSON.stringify(store.state)) // next(); // // store.dispatch("toggleOrgID").then(() => { // // next(); // // }).catch(() => { // // next(); // // }); // }); // app.router.afterEach((to, from, next) => { // console.log("afterEach"); // // let storeCache = sessionStorage.getItem("storeCache") // // if(storeCache){ // // // 将session中的store数据替换到store中 // // store.replaceState(JSON.parse(storeCache)); // // } // next(); // // store.dispatch("toggleOrgID").then(() => { // // next(); // // }).catch(() => { // // next(); // // }); // }); }