enable album nav play button

This commit is contained in:
geoffrey45
2022-06-09 11:52:26 +03:00
parent 843a80f4a3
commit e48dca4672
8 changed files with 92 additions and 50 deletions
+3 -4
View File
@@ -2,12 +2,11 @@ import { defineStore } from "pinia";
export default defineStore("navmanagement", {
state: () => ({
showPlay: true,
showPlay: false,
}),
actions: {
toggleShowPlay() {
this.showPlay = !this.showPlay;
console.log(this.showPlay);
toggleShowPlay(state: boolean) {
this.showPlay = state;
},
},
});