From 68f486c85d8919862a0d3d6a3f0f653d602172aa Mon Sep 17 00:00:00 2001 From: luoyuehang <2830398107@qq.com> Date: Sun, 28 Dec 2025 10:25:42 +0800 Subject: [PATCH] =?UTF-8?q?app1=E7=9A=84=E4=BF=A1=E6=81=AF=E6=9F=A5?= =?UTF-8?q?=E7=9C=8B=E5=8A=9F=E8=83=BD=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/zzz/src/router/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/resources/zzz/src/router/index.js b/src/main/resources/zzz/src/router/index.js index f0c378d..aab62c2 100644 --- a/src/main/resources/zzz/src/router/index.js +++ b/src/main/resources/zzz/src/router/index.js @@ -86,7 +86,10 @@ const router = createRouter({ path: '/notifications', name: 'NotificationsPage', component: () => import('../views/NotificationsPage.vue'), - meta: { requiresAuth: true } + meta: { + requiresAuth: true, + keepAlive: false // 禁用 keep-alive,确保每次进入都重新加载 + } } ] }) -- 2.34.1