Example of player integrating for Vue.js 抱歉,此页面正在等待翻译成土耳其语 Example of a simple Vue2 application that creates a player in the player container <div id="player"><div/> var app = new Vue({ methods: { init: function () { const script = document.createElement("script"); script.async = true; script.src = "playerjs.js"; document.head.appendChild(script); }, playerjs: function () { let player = new Playerjs({id:"player", file:"https://plrjs.com/sample.mp4"}); } }, created: function () { this.init() } }); function PlayerjsAsync(){ app.playerjs(); } You need to change the selected links to your own. |