14 lines
240 B
TypeScript
14 lines
240 B
TypeScript
import { defineStore } from "pinia";
|
|
|
|
export const useAppStore = defineStore('App', () => {
|
|
|
|
//左侧菜单相关
|
|
const menuApp = reactive({
|
|
isExpaned:true, //折叠控制
|
|
});
|
|
return {
|
|
menuApp
|
|
}
|
|
},
|
|
{ persist: true }
|
|
) |