-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix clearInterval bug for ie 10 and 11 #1490
Conversation
Could you pls revert the unrelated changes? |
Could you tell me what is the unrelated change? I just think all is needed. |
afterMount = [], | ||
beforeMount = [], | ||
beforeLoad = [], | ||
} = mergeWith({}, getAddOns(global, assetPublicPath), lifeCycles, (v1, v2) => concat(v1 ?? [], v2 ?? [])); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
代码格式不要修改,需要还原回去
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个应该是 prettier 自动格式化的
offGlobalStateChange, | ||
}: Record<string, CallableFunction> = getMicroAppStateActions(appInstanceId); | ||
const { onGlobalStateChange, setGlobalState, offGlobalStateChange }: Record<string, CallableFunction> = | ||
getMicroAppStateActions(appInstanceId); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里也是,代码格式不要修改,需要还原回去
afterMount = [], | ||
beforeMount = [], | ||
beforeLoad = [], | ||
} = mergeWith({}, getAddOns(global, assetPublicPath), lifeCycles, (v1, v2) => concat(v1 ?? [], v2 ?? [])); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个应该是 prettier 自动格式化的
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pls submit another pr to fix shadow dom compatible issue
ok @kuitos |
Co-authored-by: Kuitos <[email protected]>
现在还在用qiankun 吗?用的怎么样? @xinhailishi |
Checklist
Description of change
调用的对象无效
并且{ strictStyleIsolation: true }时,ie10、11下自动弃用ShadowDOM降级报错。 #1489