diff --git a/packages/@moefe/vue-aplayer/components/APlayer.tsx b/packages/@moefe/vue-aplayer/components/APlayer.tsx index 41fe175..70aa702 100644 --- a/packages/@moefe/vue-aplayer/components/APlayer.tsx +++ b/packages/@moefe/vue-aplayer/components/APlayer.tsx @@ -436,12 +436,12 @@ export default class APlayer extends Vue.Component< public skipBack() { const playIndex = this.getPlayIndexByMode('skipBack'); - this.currentMusic = this.currentList[playIndex]; + this.currentMusic = { ...this.currentList[playIndex] }; } public skipForward() { const playIndex = this.getPlayIndexByMode('skipForward'); - this.currentMusic = this.currentList[playIndex]; + this.currentMusic = { ...this.currentList[playIndex] }; } public showLrc() {