mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix(plugin-qiankun): 当子应用存在路由而且子应用以路由的形式挂载时,需要在切换路由之前unmount子应用
This commit is contained in:
parent
444ac52e93
commit
34691cbb89
@ -13,11 +13,20 @@ import { getMasterOptions } from "./masterOptions";
|
||||
{{#HAS_PLUGIN_MODEL}}
|
||||
import { useModel } from '@@/core/pluginExports';
|
||||
{{/HAS_PLUGIN_MODEL}}
|
||||
import { onBeforeRouteLeave } from "@@/core/coreExports";
|
||||
|
||||
function unmountMicroApp(microApp) {
|
||||
if (microApp && microApp.mountPromise) {
|
||||
microApp.mountPromise.then(() => microApp.unmount());
|
||||
let unmountPromise;
|
||||
async function unmountMicroApp(microApp) {
|
||||
if (microApp) {
|
||||
if (microApp.mountPromise) {
|
||||
await microApp.mountPromise;
|
||||
}
|
||||
if (!unmountPromise) {
|
||||
unmountPromise = microApp.unmount();
|
||||
}
|
||||
return await unmountPromise;
|
||||
}
|
||||
return Promise.resolve();
|
||||
}
|
||||
|
||||
export const MicroApp = defineComponent({
|
||||
@ -156,6 +165,10 @@ export const MicroApp = defineComponent({
|
||||
loadApp();
|
||||
});
|
||||
|
||||
onBeforeRouteLeave(async () => {
|
||||
return await unmountMicroApp(microAppRef.value);
|
||||
});
|
||||
|
||||
watch(()=>{
|
||||
return {...{}, ...propsFromConfigRef.value, ...stateForSlave, ...propsFromParams}
|
||||
}, () => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user