src/router/index.ts
@@ -1,5 +1,6 @@ import { createRouter, createWebHashHistory } from 'vue-router'; const router = createRouter({ history: createWebHashHistory(), routes: [ @@ -94,5 +95,8 @@ }, ], }); router.beforeEach((to, from, next) => { next(); }); export default router;