This commit is contained in:
littleeewolf 2024-08-24 20:22:32 +08:00
parent bad6862f0d
commit ad093282d1
2 changed files with 4 additions and 2 deletions

View File

@ -114,7 +114,9 @@ watch(
insertVideo(); insertVideo();
} }
nextTick(() => { nextTick(() => {
loadVideo(); setTimeout(() => {
loadVideo();
}, 300);
}); });
} }
} }

View File

@ -125,7 +125,7 @@ watch(
nextTick(() => { nextTick(() => {
setTimeout(() => { setTimeout(() => {
loadVideo(); loadVideo();
}, 2000); }, 300);
}); });
} }
} }