fix: qiankun plugin props error (#150)

This commit is contained in:
qlin 2022-10-10 10:38:45 +08:00 committed by GitHub
parent 7af10eeb59
commit 2aa88cbeb6

View File

@ -94,7 +94,7 @@ export function genMount(mountElementId) {
}
hasMountedAtLeastOnce = true;
cacheAppPromise.then((app)=>{
if(!cache[props.name]) {
if(props?.name && !cache[props.name]) {
cache[props.name] = app;
}
})