Hello!
I need to have ability to stop and reset video to the start. That's why I need the following in VideoPlayer.vue:
stop() {
if (this.$refs.video) {
this.$refs.video.stop();
}
},
or to have more control there'll be great to have:
video() {
return this.$refs.video;
},
thanks!