From 51014f7cd8c3d27453bbc609aa1291785d250b14 Mon Sep 17 00:00:00 2001 From: hzj <1304805162@qq.com> Date: Fri, 24 Oct 2025 16:54:52 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=A4=B4=E9=83=A8=E5=AF=BC=E8=88=AA?= =?UTF-8?q?=E6=A0=8F):=20=E4=BF=AE=E5=A4=8D=E8=BF=94=E5=9B=9E=E5=9B=BE?= =?UTF-8?q?=E7=89=87=E6=98=BE=E7=A4=BA=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/GeneralHeader.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/GeneralHeader.vue b/src/components/GeneralHeader.vue index 00beb4d..5afa55f 100644 --- a/src/components/GeneralHeader.vue +++ b/src/components/GeneralHeader.vue @@ -76,7 +76,9 @@ const props = defineProps({ backImg: { type: String, - default: '/src/assets/icon/arrowBack.png', + default: () => { + return new URL('../assets/icon/arrowBack.png', import.meta.url).href + }, }, })