赞
踩
cnpm install --save video.js
import Video from 'video.js'
import 'video.js/dist/video-js.css'
<template> <div class="info"> <video class="video-js" controls preload="auto" :src="mp4Url" :poster="cover" :autoplay="playStatus" :muted="muteStatus" ></video> </div> </template> <script> export default { name: "", components: {}, data() { return { cover: "",// 封面 playStatus: true, //是否自动播放 muteStatus: true, // 是否静音自动播放 mp4Url: "https://stream7.iqilu.com/10339/upload_transcode/202002/18/20200218093206z8V1JuPlpe.mp4", }; }, mounted() {}, beforeDestroy() {}, methods: {} }; </script> <style scoped lang="scss"> .info { width: 424px; height: 261px; .video-js { width: 100%; height: 239px; } } </style>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。