| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * @Author: renxin renxin0828@163.com
- * @Date: 2023-03-21 17:30:01
- * @LastEditors: renxin renxin0828@163.com
- * @LastEditTime: 2023-03-22 17:36:30
- * @FilePath: \thingskit-front\src\router\index.ts
- * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- */
- import type { RouteRecordRaw } from 'vue-router';
- import type { App } from 'vue';
- import { createRouter, createWebHistory } from 'vue-router';
- import { basicRoutes } from './routes';
- // 白名单应该包含基本静态路由
- const WHITE_NAME_LIST: string[] = [];
- const getRouteNames = (array: any[]) =>
- array.forEach((item) => {
- WHITE_NAME_LIST.push(item.name);
- getRouteNames(item.children || []);
- });
- getRouteNames(basicRoutes);
- // app router
- export const router = createRouter({
- history: createWebHistory(import.meta.env.VITE_GLOB_PUBLIC_PATH),
- routes: basicRoutes as unknown as RouteRecordRaw[],
- strict: true,
- scrollBehavior: () => ({ left: 0, top: 0 }),
- });
- // reset router
-
- export function resetRouter() {
- router.getRoutes().forEach((route) => {
- const { name } = route;
- if (name && !WHITE_NAME_LIST.includes(name as string)) {
- // 检查路由是否存在 &&通过名称删除现有路由。
- router.hasRoute(name) && router.removeRoute(name);
- }
- });
- }
- // config router
- export function setupRouter(app: App<Element>) {
- app.use(router);
- }
|