修复多个播放器加载,只初始化一个的bug

This commit is contained in:
zhouliujun 2020-10-10 15:16:02 +08:00
parent 0d872ef3e8
commit 632c3c919b
2 changed files with 5 additions and 4 deletions

View File

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

View File

@ -177,12 +177,13 @@ export default {
scriptTag.id = scriptID; scriptTag.id = scriptID;
scriptTag.src = this.scriptSrc; scriptTag.src = this.scriptSrc;
html[0].appendChild(scriptTag); html[0].appendChild(scriptTag);
scriptTag.addEventListener("load", () => {
this.initPlayer();
});
} else { } else {
this.initPlayer(); // this.initPlayer(); //
} }
//
scriptTag.addEventListener("load", () => {
this.initPlayer();
});
}, },
/** /**