global-state.service.ts 352 字节
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 };