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.
 
 

27 lines
882 B

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();
// // });
// });
}