cool-admin-vue/packages/crud/src/utils/temp.ts

18 lines
221 B
TypeScript
Raw Normal View History

2023-09-28 13:50:15 +08:00
// @ts-nocheck
import { 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;
}
};