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'), },