在add-song组件中的selectSong方法
```
selectSong(song, index) {
if (index !== 0) {
this.insertSong(new Song(song))
this.showTip()
}
}
```
如果写成
```
selectSong(song, index) {
if (index !== 0) {
this.insertSong(song)
this.showTip()
}
}
```
应该没有区别啊, 但我听老师在视频中说应该传一个song的实例, 为什么要多做这一步呢?