fix(6):调整静态文件加载路径

This commit is contained in:
2025-08-05 14:49:59 +08:00
parent 54dd8b2a2d
commit 389a0ea115
+1 -1
View File
@@ -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);