diff --git a/src/views/home.vue b/src/views/home.vue index f38f3ab..688ac8b 100644 --- a/src/views/home.vue +++ b/src/views/home.vue @@ -1,6 +1,6 @@ @@ -113,6 +129,18 @@ export default { }); }, }, + showPlaylistsByAppleMusic: { + get() { + if (this.settings.showPlaylistsByAppleMusic === undefined) return true; + return this.settings.showPlaylistsByAppleMusic; + }, + set(value) { + this.$store.commit("updateSettings", { + key: "showPlaylistsByAppleMusic", + value, + }); + }, + }, }, methods: { logout() {