I integrated the videojs player into my VUE app, but I'm struggling to add an event listener to track when the player starts playing and stops or pauses. Despite checking the documentation provided, I couldn't find any relevant information on how to do this. My setup follows the guidelines outlined in the official docs:
this.player = videojs(this.$refs.videoPlayer, this.options, () => {
this.player.log('onPlayerReady', this);
})