https://www.w3schools.com/tags/ref_eventattributes.asp
视频播放器切换内容进行播放
onClickVideo(item:any){
console.log("onClickVideo",item)
ElMessage.info("正在切换视频中,请稍后")
this.url = item.url;
this.playId = item.id
setTimeout(() => {
this.videoPlayer?.pause();
this.videoPlayer?.load();
this.videoPlayer?.play()
ElMessage.success("视频已播放")
}, 100);
}