export default ({ app }) => {
  console.log($store)
  app.router.beforeEach((to, from, next) => {
      console.log(this)
      next();
  });
};