config.ts 215 B

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