mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
fix: bug #674
This commit is contained in:
parent
c627f4684f
commit
3678839522
1 changed files with 3 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue