mirror of
https://github.com/rekryt/iplist.git
synced 2025-10-12 08:34:15 +03:00
11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
export const useMainStore = defineStore('main', {
|
|
state: () => ({
|
|
sidebar: false,
|
|
}),
|
|
actions: {
|
|
toggleSidebar() {
|
|
this.sidebar = !this.sidebar;
|
|
},
|
|
},
|
|
});
|