从 Quasar 检索 'QMediaPlayer' 事件的值

Retrieving the values ​of an event on 'QMediaPlayer' from Quasar

我想尽可能干净地检索我的 QMediaPlayer 组件中事件的 curTimeremaining 值。

我测试了几种语法,但没有成功。

我的代码示例:

this.$root.$on('timeupdate', (curTime, remaining) => {
    console.log('curTime: ', curTime)
    console.log('remaining', remaining)
}))

Quasar Doc

你有想法吗?提前致谢

试试这个 @timeupdate="onTimeUpdate":

在模板中

// other component options
@timeupdate="onTimeUpdate"

在代码中:

methods: {
  onTimeUpdate(curTime, remaining) {
    console.log('curTime: ', curTime)
    console.log('remaining', remaining)
  }
}