mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 20:35:49 +08:00
14 lines
290 B
TypeScript
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;
|