This commit is contained in:
zhouliujun 2019-12-16 11:37:52 +08:00
parent d2bd829a6b
commit 8a2c090db2
2 changed files with 8 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "vue-aliplayer-v2", "name": "vue-aliplayer-v2",
"version": "1.1.2", "version": "1.1.3",
"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

@ -159,13 +159,11 @@ export default {
scriptTag.id = scriptID; scriptTag.id = scriptID;
scriptTag.src = this.scriptSrc; scriptTag.src = this.scriptSrc;
html[0].appendChild(scriptTag); html[0].appendChild(scriptTag);
}
if(scriptTag && linkIDTag){
this.initPlayer();
} else {
scriptTag.addEventListener("load", () => { scriptTag.addEventListener("load", () => {
this.initPlayer(); this.initPlayer();
}); });
} else {
this.initPlayer();
} }
}, },
@ -480,8 +478,12 @@ export default {
} }
}, },
beforeDestroy(){ //, beforeDestroy(){ //,
// console.log('beforeDestroy');
this.player && this.player.dispose(); this.player && this.player.dispose();
const head = document.querySelector('head'); //
const nodes = document.querySelectorAll('script[src="https://g.alicdn.com/de/prismplayer/2.8.2/hls/aliplayer-hls-min.js"]');
head && nodes.forEach((item)=>{
head.removeChild(item);
});
} }
}; };
</script> </script>