vue 监听

2018-03-07  本文已影响0人  lovelydong

export default {
data() {
return {
currentSong: ''
}
},
watch: {
currentSong(newSong, oldSong) {
if (newSong.id === oldSong.id) return
this.$refs.audio.play()
}
}
}

上一篇 下一篇

猜你喜欢

热点阅读