Blame view

Yi.Vben5.Vue3/apps/web-antd/src/router/index.ts 927 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
  import {
    createRouter,
    createWebHashHistory,
    createWebHistory,
  } from 'vue-router';
  
  import { resetStaticRoutes } from '@vben/utils';
  
  import { createRouterGuard } from './guard';
  import { routes } from './routes';
  
  /**
   *  @zh_CN 创建vue-router实例
   */
  const router = createRouter({
    history:
      import.meta.env.VITE_ROUTER_HISTORY === 'hash'
        ? createWebHashHistory(import.meta.env.VITE_BASE)
        : createWebHistory(import.meta.env.VITE_BASE),
    // 应该添加到路由的初始路由列表。
    routes,
    scrollBehavior: (to, _from, savedPosition) => {
      if (savedPosition) {
        return savedPosition;
      }
      return to.hash ? { behavior: 'smooth', el: to.hash } : { left: 0, top: 0 };
    },
    // 是否应该禁止尾部斜杠。
    // strict: true,
  });
  
  const resetRoutes = () => resetStaticRoutes(router, routes);
  
  // 创建路由守卫
  createRouterGuard(router);
  
  export { resetRoutes, router };