<hic-video-player @timeupdate="timeupdate" @play="handleVideoPlay" @pause="handleVideoPlay1" @ended="handleVideoPlayEnded" ref="hicVideoPlayer" :src="video.url" :title="video.title"
playbackrate showMuteBtn :autoplay="autoplayVideo"></hic-video-player>
里面的发送事件,外面怎么监听不到
play(event) {
console.log('play ...');
this.$emit('play', event);
},
pause(event) {
console.log('pause ...');
this.$emit('pause', event);
},
自己写的
// 不被调用
handleVideoPlay(){
console.log('handleVideoPlay ...');
},
// 不被调用
handleVideoPlay1(){
console.log('handleVideoPlay1 ...');
},
// 可以被调用
handleVideoPlayEnded(){
console.log('handleVideoPlayEnded ...');
},
// 可以被调用
timeupdate(){
console.log("timeupdate")
}
1 个回复
foolma (作者) - 笨蛋吗?
是我菜,已经知道了。。。。