corrad-bp/stores/layout.js
2025-04-09 11:16:18 +08: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;
},
},
});