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; hasMountedAtLeastOnce = true;
cacheAppPromise.then((app)=>{ cacheAppPromise.then((app)=>{
if(!cache[props.name]) { if(props?.name && !cache[props.name]) {
cache[props.name] = app; 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 interface ApplyPluginsType {
export { compose: 'compose',
useRoute, event: 'event',
useRouter, modify: 'modify'
onBeforeRouteUpdate, };
onBeforeRouteLeave,
RouterLink,
RouterView,
useLink,
createWebHashHistory,
createWebHistory,
createMemoryHistory,
createRouter,
} from 'vue-router';
export { default as Plugin, ApplyPluginsType } from './plugin';
}

View File

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