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();
}
nextTick(() => {
loadVideo();
setTimeout(() => {
loadVideo();
}, 300);
});
}
}

View File

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