class GlobalStateService {
isLogin = false;
loading = false;
/**loading是否注册到主应用中
* @author ChenRui
* @date 2021/6/9 17:43
*/
get isRegister(): boolean {
return !!(window as any).__POWERED_BY_QIANKUN__;
}
}
const globalStateService = new GlobalStateService();
export { GlobalStateService, globalStateService };
-
由 jiangzaicheng 提交于b6851288