This commit is contained in:
eibons
2025-08-15 21:37:29 +08:00
parent 2d7f77a984
commit ce999372ae
183 changed files with 21567 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
// @ts-nocheck
import { type App } from "vue";
export default {
get vue(): App {
return window.__CrudApp__;
},
get(key: string) {
return window[key];
},
set(key: string, value: any) {
window[key] = value;
}
};