mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: qiankun props 异常
This commit is contained in:
parent
a92480d70d
commit
081bddc826
@ -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;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
36
packages/fes-runtime/types.d.ts
vendored
36
packages/fes-runtime/types.d.ts
vendored
@ -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';
|
|
||||||
}
|
|
||||||
|
@ -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: [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user