Example of player integrating for Vue.js   Üzgünüz, bu makale İngilizce olarak mevcuttur 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.  |