From 97beb6467a0d7234bb0e7aa93aec51a3a32f58c9 Mon Sep 17 00:00:00 2001 From: Fine Date: Thu, 30 Nov 2023 13:37:02 +0800 Subject: [PATCH] feat: add search --- src/types/app.d.ts | 2 +- src/views/Marketplace.vue | 26 ++++++++++++++++++++++++-- 2 files changed, 25 insertions(+), 3 deletions(-) diff --git a/src/types/app.d.ts b/src/types/app.d.ts index e697ae07..da4d549b 100644 --- a/src/types/app.d.ts +++ b/src/types/app.d.ts @@ -59,7 +59,7 @@ export interface SubItem { icon: string; title: string; activate: boolean; - name?: string; + name: string; path?: string; notShow?: boolean; id?: string; diff --git a/src/views/Marketplace.vue b/src/views/Marketplace.vue index 4a2e0e98..6b084903 100644 --- a/src/views/Marketplace.vue +++ b/src/views/Marketplace.vue @@ -14,11 +14,20 @@ See the License for the specific language governing permissions and limitations under the License. -->