赞
踩
1.使用npm下载依赖
npm install --save easy-player
2.将EasyPlayer-lib.min.js文件、EasyPlayer.wasm文件、libDecoder.wasm文件放置到public下
3.创建components,html代码如下
- <template>
- <div class="player-box" :style="{ width: width, height: height }">
- <EasyPlayer
- style="width: 100%; height: 100%"
- :videoUrl="videoUrl"
- :showEnterprise="false"
- :show-custom-button="false"
- :autoplay="true"
- />
- </div>
- </template>
4.使用props接收数据
- props: {
- // 视频地址
- videoUrl: {
- type: String,
- default: "",
- },
- // 容器id
- id: {
- type: String,
- default: "",
- },
- // 容器宽度
- width: {
- type: [Number, String],
- default: "100%",
- },
- // 容器高度
- height: {
- type: [Number, String],
- default: "100%",
- },
- },
5.在父组件中引入,传递props中的数据即可运行即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。