Small changes

This commit is contained in:
Natsumi
2025-09-13 09:54:22 +12:00
parent e4962cc180
commit aeabb5181d
5 changed files with 25 additions and 15 deletions

View File

@@ -1,4 +1,6 @@
import { reactive } from 'vue';
import dayjs from 'dayjs';
import * as utils from '../shared/utils';
const AppDebug = reactive({
debug: false,
@@ -17,5 +19,7 @@ const AppDebug = reactive({
});
window.$debug = AppDebug;
window.utils = utils;
window.dayjs = dayjs;
export { AppDebug };