fix: qiankun props 异常

This commit is contained in:
winixt 2022-10-10 15:30:58 +08:00
parent 797a07394d
commit 339c81126a
3 changed files with 22 additions and 19 deletions

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;
}
})

View File

@ -1,19 +1,21 @@
export { Plugin } from './es/index'
export {
useRoute,
useRouter,
onBeforeRouteUpdate,
onBeforeRouteLeave,
RouterLink,
RouterView,
useLink,
createWebHashHistory,
createWebHistory,
createMemoryHistory,
createRouter,
} from 'vue-router';
declare module "@fesjs/fes" {
export {
useRoute,
useRouter,
onBeforeRouteUpdate,
onBeforeRouteLeave,
RouterLink,
RouterView,
useLink,
createWebHashHistory,
createWebHistory,
createMemoryHistory,
createRouter,
} from 'vue-router';
export { default as Plugin, ApplyPluginsType } from './plugin';
}
export interface ApplyPluginsType {
compose: 'compose',
event: 'event',
modify: 'modify'
};

View File

@ -33,6 +33,7 @@ export default {
menus: [
{
name: 'index',
icon: '/wine-outline.svg',
match: ['/route/*']
},
@ -69,7 +70,7 @@ export default {
]
},
locale: {
legacy: true
legacy: false
},
enums: {
status: [