小程序初始提交
This commit is contained in:
15
cool-unix/uni_modules/cool-ui/config.ts
Normal file
15
cool-unix/uni_modules/cool-ui/config.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { reactive } from "vue";
|
||||
|
||||
type Config = {
|
||||
fontSize: number | null;
|
||||
zIndex: number;
|
||||
startDate: string;
|
||||
endDate: string;
|
||||
};
|
||||
|
||||
export const config = reactive<Config>({
|
||||
fontSize: null,
|
||||
zIndex: 600,
|
||||
startDate: "2000-01-01 00:00:00",
|
||||
endDate: "2050-12-31 23:59:59"
|
||||
});
|
||||
Reference in New Issue
Block a user