From c075cea921f3c9a63c8c497f47520a27e8f22664 Mon Sep 17 00:00:00 2001 From: aaron <> Date: Sun, 2 Mar 2025 10:08:21 +0800 Subject: [PATCH] update --- src/router/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/router/index.js b/src/router/index.js index 4b1b842..b826011 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,4 +1,4 @@ -import { createRouter, createWebHashHistory } from 'vue-router' +import { createRouter, createWebHistory } from 'vue-router' import Home from '../components/Home.vue' import PrivacyAgreement from '../components/PrivacyAgreement.vue' import UserAgreement from '../components/UserAgreement.vue' @@ -58,7 +58,7 @@ const routes = [ ] const router = createRouter({ - history: createWebHashHistory(), + history: createWebHistory(), routes })