auth.js 144 B

1234567
  1. export default ({ app }) => {
  2. console.log($store)
  3. app.router.beforeEach((to, from, next) => {
  4. console.log(this)
  5. next();
  6. });
  7. };