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