You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
export const qiankun = {
|
|
// 应用加载之前
|
|
async bootstrap(props) {
|
|
console.log('app2 bootstrap', props);
|
|
},
|
|
// 应用 render 之前触发
|
|
async mount(props) {
|
|
console.log('app2 mount', props);
|
|
},
|
|
// 应用卸载之后触发
|
|
async unmount(props) {
|
|
console.log('app2 unmount', props);
|
|
},
|
|
};
|