You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
225 B
17 lines
225 B
|
6 days ago
|
// @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;
|
||
|
|
}
|
||
|
|
};
|