fix: bug#10540

This commit is contained in:
JiangQiming 2023-03-22 13:48:29 +08:00
parent 835874604d
commit ba8bbc9896
1 changed files with 5 additions and 1 deletions

View File

@ -140,7 +140,11 @@ const handleRecord = async () => {
* 刷新
*/
const handleRefresh = () => {
player.value.play();
// player.value.play();
url.value = '';
setTimeout(() => {
mediaStart();
}, 500);
};
/**