This commit is contained in:
2025-03-07 17:35:39 +08:00
parent 3f38f1bb73
commit 94644d0601
48 changed files with 585 additions and 7 deletions

View File

@@ -1,8 +1,9 @@
import {defineStore} from "pinia";
import {ref} from "vue";
export const useSystemStore = defineStore("SystemStore", () => {
const isRoot = ref(false);
return {
isRoot
}
});