Files
xl-root/src/pinia/SystemStore/index.js

10 lines
195 B
JavaScript
Raw Normal View History

2025-02-27 14:38:47 +08:00
import {defineStore} from "pinia";
2025-03-07 17:35:39 +08:00
import {ref} from "vue";
2025-02-27 14:38:47 +08:00
export const useSystemStore = defineStore("SystemStore", () => {
2025-03-07 17:35:39 +08:00
const isRoot = ref(false);
2025-02-27 14:38:47 +08:00
return {
2025-03-07 17:35:39 +08:00
isRoot
2025-02-27 14:38:47 +08:00
}
});