Просмотр исходного кода

feat: export router (#53)

在store模块中,可能需要router跳转
hb0730 3 лет назад
Родитель
Сommit
86cde31aaa
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/router/index.ts

+ 1 - 1
src/router/index.ts

@@ -65,7 +65,7 @@ export const addAsyncRoutes = (arrRoutes: Array<RouteComponent>) => {
   return arrRoutes;
 };
 
-const router: Router = createRouter({
+export const router: Router = createRouter({
   history: createWebHashHistory(),
   routes: ascending(constantRoutes).concat(...remainingRouter),
   scrollBehavior(to, from, savedPosition) {