Files
xl-root/src/pinia/SystemStore/index.js
2025-03-07 17:35:39 +08:00

10 lines
195 B
JavaScript

import {defineStore} from "pinia";
import {ref} from "vue";
export const useSystemStore = defineStore("SystemStore", () => {
const isRoot = ref(false);
return {
isRoot
}
});