From fd851bb8d68a5f1782a187be580ab3369cd44b1c Mon Sep 17 00:00:00 2001 From: yangsy Date: Sat, 28 Feb 2026 11:01:19 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E8=B0=83=E6=95=B4=E7=B3=BB?= =?UTF-8?q?=E7=BB=9F=E9=A1=B5=E9=9D=A2=E7=9A=84=E7=9B=AE=E5=BD=95=E7=BB=93?= =?UTF-8?q?=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/{ => system}/error/not-found-page.vue | 0 src/router/index.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/pages/{ => system}/error/not-found-page.vue (100%) diff --git a/src/pages/error/not-found-page.vue b/src/pages/system/error/not-found-page.vue similarity index 100% rename from src/pages/error/not-found-page.vue rename to src/pages/system/error/not-found-page.vue diff --git a/src/router/index.ts b/src/router/index.ts index 8e5af07..0d21e71 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -58,7 +58,7 @@ const router = createRouter({ }, { path: '/:pathMatch(.*)*', - component: () => import('@/pages/error/not-found-page.vue'), + component: () => import('@/pages/system/error/not-found-page.vue'), }, ], },