fix: 修改路由模式hash
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
import type { App } from 'vue';
|
||||
import type { RouteRecord } from 'vue-router';
|
||||
|
||||
import { createRouter, createWebHistory } from 'vue-router';
|
||||
import { createRouter, createWebHistory, createWebHashHistory } from 'vue-router';
|
||||
import { routes, ALLRoute, WHITE_NAME_LIST } from './routes';
|
||||
import { useRouteStore } from '/nerv-base/store/modules/route';
|
||||
import { createPermissionGuard } from '/nerv-lib/saas/router/guard/permission-guard';
|
||||
|
||||
// app router
|
||||
export const router = createRouter({
|
||||
history: createWebHistory(import.meta.env.VITE_PUBLIC_PATH as string),
|
||||
history: createWebHashHistory(import.meta.env.VITE_PUBLIC_PATH as string),
|
||||
routes: ALLRoute,
|
||||
strict: true,
|
||||
scrollBehavior: () => ({ left: 0, top: 0 }),
|
||||
|
Reference in New Issue
Block a user