From 2db98acd7d2c36fe23756051c2c858ab33244572 Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期二, 31 十二月 2024 10:25:35 +0800
Subject: [PATCH] 删除无关代码——关联查询; 整理代码

---
 src/views/error/404.vue |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/views/error/404.vue b/src/views/error/404.vue
index 0b7d899..886a1c1 100644
--- a/src/views/error/404.vue
+++ b/src/views/error/404.vue
@@ -23,6 +23,7 @@
 </template>
 
 <script setup lang="ts" name="notFound">
+import { onMounted } from 'vue';
 import { useRouter } from 'vue-router';
 
 // 瀹氫箟鍙橀噺鍐呭
@@ -32,6 +33,10 @@
 const onGoHome = () => {
 	router.push('/');
 };
+
+onMounted(()=>{
+})
+const currentRoute = router.currentRoute.value
 </script>
 
 <style scoped lang="scss">

--
Gitblit v1.9.3