vue-youtube-embed
vue-youtube-embed copied to clipboard
How to loop video
This is my code. And I had a trouble with loop video in youtube. video: { var: { playlist: 'aiKOoXm40EE', autoplay: 1, loop: 1, showinfo: 0, mute: 1 }, id: 'aiKOoXm40EE', width: 1920, height: 1200
<youtube id="player" :video-id="video.id" :player-width="video.width" :player-height="video.height" :player-vars="video.var"/>
any resolution on this, I'm not getting this to work either.
I have resolved this so:
<youtube :video-id="videoId" ref="player" @ended="ended"></youtube>
methods: {
ended() {
this.$refs.player.player.seekTo(0)
}
}