mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2024-11-22 15:10:24 +08:00
fix: bug #674
This commit is contained in:
parent
c627f4684f
commit
3678839522
|
@ -60,7 +60,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="container latest-mv">
|
<div v-show="latestMV.id" class="container latest-mv">
|
||||||
<div
|
<div
|
||||||
class="cover"
|
class="cover"
|
||||||
@mouseover="mvHover = true"
|
@mouseover="mvHover = true"
|
||||||
|
@ -90,6 +90,7 @@
|
||||||
<div class="type"> 最新MV </div>
|
<div class="type"> 最新MV </div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div v-show="!latestMV.id"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="popularTracks" class="popular-tracks">
|
<div id="popularTracks" class="popular-tracks">
|
||||||
|
@ -223,7 +224,7 @@ export default {
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
latestMV() {
|
latestMV() {
|
||||||
const mv = this.mvs[0];
|
const mv = this.mvs[0] || {};
|
||||||
return {
|
return {
|
||||||
id: mv.id || mv.vid,
|
id: mv.id || mv.vid,
|
||||||
name: mv.name || mv.title,
|
name: mv.name || mv.title,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user