tanghaolin
2025-02-13 2b704445446237ae5645bd387c9d60a30a6ecd13
src/router/index.ts
@@ -1,10 +1,14 @@
import { createRouter, createWebHistory } from 'vue-router';
import { createRouter, createWebHistory,createWebHashHistory } from 'vue-router';
const router = createRouter({
   history: createWebHistory('./'),
   history: createWebHashHistory(),
   routes: [
      {
         path: '/',
         path: "/:path(.*)*",
         redirect: "/home",
        },
      {
         path: '/home',
         name: 'home',
         component: () => import('../views/Home.vue'),
      },