From ec2a3a73504eb877d6d1ba41d028d26c660c12c8 Mon Sep 17 00:00:00 2001 From: R2m1liA <15258427350@163.com> Date: Tue, 16 Sep 2025 16:03:53 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E8=B0=83=E6=95=B4=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 基于ESLint格式化代码 --- app/pages/search.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/pages/search.vue b/app/pages/search.vue index 33857ed..0dc2fb2 100644 --- a/app/pages/search.vue +++ b/app/pages/search.vue @@ -212,7 +212,10 @@ const performSearch = async (value: string) => { } }; -function debounce void>(fn: T, delay: number): (...args: Parameters) => void { +function debounce void>( + fn: T, + delay: number +): (...args: Parameters) => void { let timer: ReturnType | null = null; return function (this: never, ...args: Parameters) { @@ -242,7 +245,7 @@ onMounted(() => { } else { loading.value = false; } -}) +}); useHead(() => ({ title: t("search.head-title"),