he wei
2024-10-08 96ee251c889b4a7cd65134658ac5c2d4d5fa1798
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import {
  createRouter,
  createWebHistory,
  createWebHashHistory,
} from "vue-router";
import { routes } from "./routes.js";
 
const router = createRouter({
  // history: createWebHistory(import.meta.env.BASE_URL),
  history: createWebHashHistory(),
  routes,
});
 
export default router;