New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vue-dplayer

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-dplayer

A Vue 2.x video player component based on DPlayer

0.0.10
latest
Source
npm
Version published
Weekly downloads
433
-1.37%
Maintainers
1
Weekly downloads
 
Created
Source

Vue-DPlayer

A Vue 2.x video player component based on DPlayer.

NPM version Vue 2.x NPM downloads

Live Demo

Install

npm install vue-dplayer -S

Usage

CDN: https://unpkg.com/vue-dplayer@latest/dist/

import VueDPlayer from 'vue-dplayer'
import 'vue-dplayer/vue-dplayer.css'

export default {
  components: {
    'd-player': VueDPlayer
  }
}

Props

Options Doc

NameTypeDefaultDescription
optionsObject--all player options

Events

Event binding Doc

Example:

<d-player @play="play"></d-player>

export default {
    methods: {
      play() {
        console.log('play callback')
      }
    }

API

you can use all DPlayer APIs

Example:

<d-player ref="player"></d-player>

export default {
    mounted() {
      const player = this.$refs.player.dp
      player.play()
      setTimeout(() => {
        player.pause()
      }, 2000)
    }

License

This content is released under the MIT License.

Keywords

vue

FAQs

Package last updated on 02 Jun 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts