feat: 系统设置优化
This commit is contained in:
9
web/src/utils/app-state.ts
Normal file
9
web/src/utils/app-state.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { reactive } from "vue";
|
||||
|
||||
interface AppState {
|
||||
loading: boolean;
|
||||
}
|
||||
|
||||
export const appState = reactive<AppState>({
|
||||
loading: false,
|
||||
});
|
Reference in New Issue
Block a user