auth.js 98 B

12345
  1. export default ({ app }) => {
  2. app.router.beforeEach((to, from, next) => {
  3. next();
  4. });
  5. };