export default ({ app, store }) => { app.router.beforeEach((to, from, next) => { console.log(to.name); if (to.name === 'ServiceContent'){ to.meta.refresh = false; } // store.dispatch("toggleOrgID").then(() => { // next(); // }).catch(() => { // next(); // }); }); }