xdlumia / vue3-video-play

适用于 Vue3 的 hls.js 播放器组件,配置丰富,界面还算好看
https://codelife.cc/vue3-video-play/
602 stars 99 forks source link

如何调用方法让视频暂停? #58

Open chenxueji opened 2 years ago

zhangzhichaolove commented 2 years ago

使用ref拿到vue3VideoPlay的实例,然后调用如下方法即可:

# 播放
player.value.play()
# 暂停
player.value.pause()
# 暂停或播放
player.value.togglePlay()
zhangzhichaolove commented 2 years ago

使用ref拿到vue3VideoPlay的实例,然后调用如下方法即可:

# 播放
player.value.play()
# 暂停
player.value.pause()
# 暂停或播放
player.value.togglePlay()