Explorar el Código

feat: export router (#53)

在store模块中,可能需要router跳转
hb0730 hace 3 años
padre
commit
86cde31aaa
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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) {