fix artist and album page is_favorite reactivity

+ remove nav components for playlist and album page
This commit is contained in:
geoffrey45
2022-12-28 18:14:46 +03:00
committed by Mungai Njoroge
parent 905fff04b4
commit 4d08ebedb6
9 changed files with 47 additions and 122 deletions
+6
View File
@@ -50,5 +50,11 @@ export default defineStore("artistPage", {
this.eps = [];
this.singles = [];
},
makeFavorite() {
this.info.is_favorite = true;
},
removeFavorite() {
this.info.is_favorite = false;
},
},
});