mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
enable album nav play button
This commit is contained in:
+3
-4
@@ -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;
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user