mirror of
https://github.com/langyuxiansheng/vue-aliplayer-v2.git
synced 2025-04-05 19:41:39 +08:00
修复多个播放器加载,只初始化一个的bug
This commit is contained in:
parent
0d872ef3e8
commit
632c3c919b
@ -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",
|
||||||
|
@ -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();
|
||||||
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user