Files
CloudSaver/frontend/src/stores/index.ts
2025-02-20 12:00:19 +08:00

18 lines
280 B
TypeScript

import { defineStore } from "pinia";
interface StoreType {
scrollTop: boolean;
}
export const useStore = defineStore("global", {
state: (): StoreType => ({
scrollTop: true,
}),
actions: {
setScrollTop(top: boolean) {
this.scrollTop = top;
},
},
});