Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

197
Views
Vue Plyr How to init autoplay based on props using Plyr

I'm using Plyr for my Vue-app, but for some reason I cannot make it initialize the autoplay if it is set to true. Here is my code:

<div class="vue-plyr--wrapper">
  <div ref="player" :data-plyr-provider="type" v-bind:data-plyr-embed-id="src.src"></div>
</div>

export default {
 props: {
  src: {
    default: ''
  },
  type: {
    default: 'image'
   },
  autoplay: {
    type: Boolean,
    default: false,
  },
  mute: {
    type: Boolean,
    default: false,
  }
 },
data: () => ({
  started: false
}),
async mounted () {
  await this.$nextTick()

  await new Promise(resolve => setTimeout(resolve, 1000))

  this.$options.player = new Plyr(this.$refs.player, {
    resetOnEnd: true,
    speed: { selected: 1, options: [] },
    muted: this.autoplay ? true : this.mute,
    autoplay: this.autoplay
   })
 },
}

Can someone maybe tell me what I'm doing wrong?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!