Files
WAI_Project_UNIX/uni_modules/cool-ui/config.ts

16 lines
277 B
TypeScript
Raw Normal View History

import { reactive } from "vue";
2025-07-21 16:47:04 +08:00
type Config = {
fontSize: number | null;
2025-07-21 16:47:04 +08:00
zIndex: number;
startDate: string;
endDate: string;
2025-07-21 16:47:04 +08:00
};
export const config = reactive<Config>({
fontSize: null,
zIndex: 600,
2025-08-06 18:14:11 +08:00
startDate: "2000-01-01 00:00:00",
endDate: "2050-12-31 23:59:59"
});