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,7 +1,6 @@
export { Plugin } from './es/index'
export {
declare module "@fesjs/fes" {
export {
useRoute, useRoute,
useRouter, useRouter,
onBeforeRouteUpdate, onBeforeRouteUpdate,
@ -13,7 +12,10 @@ declare module "@fesjs/fes" {
createWebHistory, createWebHistory,
createMemoryHistory, createMemoryHistory,
createRouter, createRouter,
} from 'vue-router'; } 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: [ 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: [