修改音频加载策略
This commit is contained in:
@@ -85,7 +85,7 @@ const checkAudioProgress = async () => {
|
||||
|
||||
const audioFinalProgress = computed(() => {
|
||||
const left = 1 - audioInitProgress.value;
|
||||
return (audioProgress.value - audioInitProgress.value) / left;
|
||||
return Math.max(0, (audioProgress.value - audioInitProgress.value) / left);
|
||||
});
|
||||
|
||||
onMounted(() => {
|
||||
|
||||
Reference in New Issue
Block a user