vue引入外部js(cdn)文件

需求背景:
在项目中,希望引入阿里播放器插件。

实现:

index.html:

    

main.js:

const Aliplayer = window.Aliplayer
Vue.prototype.Aliplayer = Aliplayer

使用:

var player = new this.Aliplayer({
    id: 'J_prismPlayer',
    width: '100%',
    autoplay: true,
    source: ''
  }, function (player) {
    console.log('播放器创建好了。')
  })

你可能感兴趣的:(Vue)