mirror of https://github.com/halo-dev/halo
28 lines
686 B
TypeScript
28 lines
686 B
TypeScript
![]() |
import {
|
||
|
createRouter,
|
||
|
createWebHistory,
|
||
|
type RouteLocationNormalized,
|
||
|
type RouteLocationNormalizedLoaded,
|
||
|
} from "vue-router";
|
||
|
import routesConfig from "@uc/router/routes.config";
|
||
![]() |
import { setupAuthCheckGuard } from "./guards/auth-check";
|
||
|
import { setupPermissionGuard } from "./guards/permission";
|
||
![]() |
|
||
|
const router = createRouter({
|
||
|
history: createWebHistory(import.meta.env.BASE_URL),
|
||
|
routes: routesConfig,
|
||
|
scrollBehavior: (
|
||
|
to: RouteLocationNormalized,
|
||
|
from: RouteLocationNormalizedLoaded
|
||
|
) => {
|
||
|
if (to.name !== from.name) {
|
||
|
return { left: 0, top: 0 };
|
||
|
}
|
||
|
},
|
||
|
});
|
||
|
|
||
![]() |
setupAuthCheckGuard(router);
|
||
|
setupPermissionGuard(router);
|
||
|
|
||
![]() |
export default router;
|