1
0
forked from Leaf/amber-ui
amber-ui-re/src/stores/app.ts

14 lines
288 B
TypeScript
Raw Normal View History

2024-09-10 08:29:08 +00:00
// Utilities
import { defineStore } from "pinia";
export const useAppStore = defineStore("app", {
persist: false,
state: () => ({
2024-09-11 16:50:46 +00:00
updating: false,
2024-09-16 13:08:27 +00:00
contentScrollHeight: 0,
contentScrollPosition: 0,
contentScrollOnBottom: false,
2024-09-16 13:53:48 +00:00
contentScrollable: false,
2024-09-10 08:29:08 +00:00
}),
});