EDMS/stores/layout.js
2025-05-27 04:00:34 +00:00

15 lines
272 B
JavaScript

import { defineStore } from "pinia";
export const useLayoutStore = defineStore({
id: "layout",
state: () => ({
layoutType: "vertical",
mobileWidth: "1024",
}),
actions: {
setLayoutType(layoutType) {
this.layoutType = layoutType;
},
},
});