forked from Leaf/amber-ui
14 lines
288 B
TypeScript
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,
|
|
}),
|
|
});
|