feat: 系统设置优化

This commit is contained in:
tbphp
2025-07-03 22:38:01 +08:00
parent c0594d068e
commit 21fe7cca04
8 changed files with 163 additions and 66 deletions

View File

@@ -0,0 +1,9 @@
import { reactive } from "vue";
interface AppState {
loading: boolean;
}
export const appState = reactive<AppState>({
loading: false,
});