fix: qiankun props 异常

This commit is contained in:
winixt 2022-10-10 15:30:58 +08:00
parent a92480d70d
commit 081bddc826
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,6 +1,5 @@
export { Plugin } from './es/index'
declare module "@fesjs/fes" {
export {
useRoute,
useRouter,
@ -15,5 +14,8 @@ declare module "@fesjs/fes" {
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: [