xushunfa459 bb8a597e19 update
2022-06-30 19:27:52 +08:00

14 lines
290 B
TypeScript

import { createRouter, createWebHashHistory, Router } from 'vue-router';
import routes from './routes';
const router: Router = createRouter({
history: createWebHashHistory('/'),
routes: routes,
});
router.beforeEach(async (_to, _from, next) => {
next();
});
export default router;