您好,登錄后才能下訂單哦!
官網(wǎng)
vue-dplayer
dplayer-doc
示例
如果默認(rèn) options 中沒(méi)有視頻鏈接,之后設(shè)置視頻鏈接時(shí),直接通過(guò) this.options.video.url = videoPath 是無(wú)效的
需要先獲取到播放器的實(shí)例 this.$refs.player.dp ,然后通過(guò) switchVideo() 對(duì) url 進(jìn)行修改
<template> <d-player ref="player" :options="options"></d-player> </template> <script type="text/ecmascript-6"> import dPlayer from 'vue-dplayer' import 'vue-dplayer/dist/vue-dplayer.css' export default { name: 'in-video', props: { source: { type: String, default: '' } }, data () { return { player: null, options: { video: { url: '' }, contextmenu: [ {} ] } } }, mounted() { this.player = this.$refs.player.dp }, created() { this._setVideoUrl(this.source) }, methods: { // 設(shè)置視頻播放路徑 _setVideoUrl (url) { this.player.switchVideo({ url: url }) } }, components: { dPlayer } } </script>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。