从 Quasar 检索 'QMediaPlayer' 事件的值
Retrieving the values of an event on 'QMediaPlayer' from Quasar
我想尽可能干净地检索我的 QMediaPlayer 组件中事件的 curTime
和 remaining
值。
我测试了几种语法,但没有成功。
我的代码示例:
this.$root.$on('timeupdate', (curTime, remaining) => {
console.log('curTime: ', curTime)
console.log('remaining', remaining)
}))
你有想法吗?提前致谢
试试这个 @timeupdate="onTimeUpdate"
:
在模板中
// other component options
@timeupdate="onTimeUpdate"
在代码中:
methods: {
onTimeUpdate(curTime, remaining) {
console.log('curTime: ', curTime)
console.log('remaining', remaining)
}
}
我想尽可能干净地检索我的 QMediaPlayer 组件中事件的 curTime
和 remaining
值。
我测试了几种语法,但没有成功。
我的代码示例:
this.$root.$on('timeupdate', (curTime, remaining) => {
console.log('curTime: ', curTime)
console.log('remaining', remaining)
}))
你有想法吗?提前致谢
试试这个 @timeupdate="onTimeUpdate"
:
在模板中
// other component options
@timeupdate="onTimeUpdate"
在代码中:
methods: {
onTimeUpdate(curTime, remaining) {
console.log('curTime: ', curTime)
console.log('remaining', remaining)
}
}