Added Most Streamed Albums to Home Tab

This commit is contained in:
RemixDev
2020-05-10 14:57:53 +02:00
parent 9cae0b4210
commit 0c74cc3123
4 changed files with 23 additions and 3 deletions

View File

@@ -41366,7 +41366,8 @@ const LinkAnalyzerTab = new Vue({
const HomeTab = new Vue({
data() {
return {
playlists: []
playlists: [],
albums: []
}
},
methods: {
@@ -41385,6 +41386,7 @@ const HomeTab = new Vue({
},
initHome(data) {
this.playlists = data.playlists.data;
this.albums = data.albums.data;
}
},
mounted() {

File diff suppressed because one or more lines are too long