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()
}
}
}
export default {
data() {
return {
currentSong: ''
}
},
watch: {
currentSong(newSong, oldSong) {
if (newSong.id === oldSong.id) return
this.$refs.audio.play()
}
}
}