From 2c95f86963f1dea624fd362111e3892e95b871cf Mon Sep 17 00:00:00 2001
From: 疯狂的狮子Li <15040126243@163.com>
Date: 星期五, 22 十二月 2023 13:20:44 +0800
Subject: [PATCH] 🧨发布 vue 版本 5.1.2 与 cloud 版本 2.1.2

---
 src/components/HeaderSearch/index.vue |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/components/HeaderSearch/index.vue b/src/components/HeaderSearch/index.vue
index 85c6ca0..b922c6c 100644
--- a/src/components/HeaderSearch/index.vue
+++ b/src/components/HeaderSearch/index.vue
@@ -88,7 +88,7 @@
 }
 // Filter out the routes that can be displayed in the sidebar
 // And generate the internationalized title
-const generateRoutes = (routes: RouteOption[], basePath = '', prefixTitle: string[] = [], query: any = {}) => {
+const generateRoutes = (routes: RouteOption[], basePath = '', prefixTitle: string[] = []) => {
   let res: Router = []
   routes.forEach(r => {
     // skip hidden router
@@ -114,7 +114,7 @@
 
       // recursive child routes
       if (r.children) {
-        const tempRoutes = generateRoutes(r.children, data.path, data.title, data.query);
+        const tempRoutes = generateRoutes(r.children, data.path, data.title);
         if (tempRoutes.length >= 1) {
           res = [...res, ...tempRoutes];
         }

--
Gitblit v1.9.3