import videojs from 'video.js';
export default {
data() {
return {
videoSrc: 'http://example.com/path/to/your.m3u8'
};
},
mounted() {
this.player = videojs(this.$refs.videoPlayer);
},
beforeDestroy() {
if (this.player) {
this.player.dispose();
}
}
};