From 389a0ea115bb8439f2db1b9b438c45e02814b5bf Mon Sep 17 00:00:00 2001 From: cat_shark <1716967236@qq.com> Date: Tue, 5 Aug 2025 14:49:59 +0800 Subject: [PATCH] =?UTF-8?q?fix(6)=EF=BC=9A=E8=B0=83=E6=95=B4=E9=9D=99?= =?UTF-8?q?=E6=80=81=E6=96=87=E4=BB=B6=E5=8A=A0=E8=BD=BD=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/composables/useTimer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/composables/useTimer.ts b/src/components/composables/useTimer.ts index 36460f2..242acbb 100644 --- a/src/components/composables/useTimer.ts +++ b/src/components/composables/useTimer.ts @@ -2,7 +2,7 @@ import { ref } from 'vue'; import { ElMessageBox, ElMessage } from 'element-plus'; -export function useTimer(audioUrl: string = '/public/resource/notification.mp3') { +export function useTimer(audioUrl: string = '/resource/notification.mp3') { const timerMinutes = ref(25); const timerSeconds = ref(0); const remainingTime = ref(25 * 60 * 1000);