Replies: 1 comment
-
同求,能不能把render暴露出来呢 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
export const qiankun = {
// 应用加载之前
async bootstrap(props:any) {
},
// 应用 render 之前触发
async mount(props: any) {
},
// 应用卸载之后触发
async unmount(props:any) {
console.log('app1 unmount', props);
return props
},
};
Beta Was this translation helpful? Give feedback.
All reactions