mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-12 09:18:14 +08:00
21 lines
277 B
TypeScript
21 lines
277 B
TypeScript
import { defineStore } from "pinia";
|
|
|
|
const useAppStore = defineStore({
|
|
id: "app",
|
|
state: () => {
|
|
return {
|
|
// 侧边栏设置
|
|
sidebar: {
|
|
expand: true,
|
|
},
|
|
dataPath: {
|
|
app: "",
|
|
user: "",
|
|
},
|
|
};
|
|
},
|
|
persist: true,
|
|
});
|
|
|
|
export default useAppStore;
|