mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
9 lines
194 B
TypeScript
9 lines
194 B
TypeScript
import type { Router } from 'vue-router';
|
|
|
|
export function setupRouterGuard(router: Router) {
|
|
router.beforeEach((_to, _from, next) => {
|
|
next();
|
|
});
|
|
// router.afterEach((_to) => {});
|
|
}
|