config.ts 277 B

123456789101112131415
  1. import { reactive } from "vue";
  2. type Config = {
  3. fontSize: number | null;
  4. zIndex: number;
  5. startDate: string;
  6. endDate: string;
  7. };
  8. export const config = reactive<Config>({
  9. fontSize: null,
  10. zIndex: 600,
  11. startDate: "2000-01-01 00:00:00",
  12. endDate: "2050-12-31 23:59:59"
  13. });