UNPKG

@dcp-designable/utils

Version:

工具类

19 lines 459 B
import { observable } from '@formily/reactive'; const SYSTEM_CONFIG_STORE = observable.ref({ systemId: '', token: '', tenantId: '', userInfo: {}, fetch: { baseURL: '', }, }); export const Designer_GlobalRegister = { setSystemConfig(config) { SYSTEM_CONFIG_STORE.value = config; }, getSystemConfig() { return SYSTEM_CONFIG_STORE.value; }, }; //# sourceMappingURL=register.js.map