1
0
forked from Leaf/amber-ui
amber-ui-re/src/stores/app.ts
2024-09-16 21:53:48 +08:00

14 lines
288 B
TypeScript

// Utilities
import { defineStore } from "pinia";
export const useAppStore = defineStore("app", {
persist: false,
state: () => ({
updating: false,
contentScrollHeight: 0,
contentScrollPosition: 0,
contentScrollOnBottom: false,
contentScrollable: false,
}),
});