vue中使用vue-video-player,播放m3u8格式
1,安装vue-video-playernpm install vue-video-player --save
2,在main.js里面引入import VideoPlayer from 'vue-video-player'require('vue-video-player/node_modules/video.js/dist/video-js.css')require('vue-video-player/src/custom-theme.css')Vue.use(VideoPlayer)
3,页面使用插件
4,data配置 playerOptions: {
autoplay: false, // 如果true,浏览器准备好时开始回放。
muted: false, // 默认情况下将会消除任何音频。
loop: false, // 导致视频一结束就重新开始。
preload: 'auto',
}
发表评论 (审核通过后显示评论):