diff --git a/package.json b/package.json index c3a0994..3778e4b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-aliplayer-v2", - "version": "1.2.3", + "version": "1.2.4", "author": "yxs", "description": "感谢每一位开源的开发者. 这是一个基于Alipayer 开发并封装成vue组件的集成播放器.", "main":"lib/vue-aliplayer-v2.umd.min.js", diff --git a/packages/AliplayerV2/index.vue b/packages/AliplayerV2/index.vue index 610590c..1e40d81 100644 --- a/packages/AliplayerV2/index.vue +++ b/packages/AliplayerV2/index.vue @@ -177,12 +177,13 @@ export default { scriptTag.id = scriptID; scriptTag.src = this.scriptSrc; html[0].appendChild(scriptTag); - scriptTag.addEventListener("load", () => { - this.initPlayer(); - }); } else { this.initPlayer(); //这样是为了兼容页面上有多个播放器 } + //兼容单页加载和硬加载 + scriptTag.addEventListener("load", () => { + this.initPlayer(); + }); }, /**