修复播放源属性验证错误

This commit is contained in:
狼先森 2020-05-16 22:17:23 +08:00
parent 3acb019962
commit ad5b049d14
4 changed files with 6 additions and 4 deletions

View File

@ -375,6 +375,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
## 更新日志
> v1.1.9 修复播放源(修复prop:source类型验证报错), 感谢"hugo2017"和“nullF”网友的反馈.
> v1.1.8 修复播放源(增加source属性类型错误),修复获取播放器状态 getStatus()方法报错, 感谢"kongjigu"网友的反馈.
> v1.1.7 增加动态切换播放源(增加source属性)功能 感谢"wikimo"和"jieruian"两位网友的反馈建议.

View File

@ -1,7 +1,7 @@
<template>
<div id="app">
<template v-if="show">
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV2" id="player-1194076936807170050" :options="options" />
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV2" :options="options" />
</template>
<p class="remove-text" v-else>播放器已销毁!</p>
<div class="player-btns">

View File

@ -1,6 +1,6 @@
{
"name": "vue-aliplayer-v2",
"version": "1.1.8",
"version": "1.1.9",
"author": "yxs",
"description": "感谢每一位开源的开发者. 这是一个基于Alipayer 开发并封装成vue组件的播放器.",
"main":"lib/vue-aliplayer-v2.umd.min.js",

View File

@ -13,12 +13,12 @@ export default {
source: { //(options.source) ,mp4/flv/m3u8rtmp
required: false,
type: [String],
default: () => null
default: null
},
id:{
required: false,
type: [String],
default: `player-${Date.parse(new Date())}`
default: `player-${Math.random().toString(36).substr(2).toLocaleUpperCase()}`
},
cssLink:{ //css
required: false,