diff --git a/packages/fes-plugin-layout/src/template/runtime.tpl b/packages/fes-plugin-layout/src/template/runtime.tpl index 695e9125..6c10339f 100644 --- a/packages/fes-plugin-layout/src/template/runtime.tpl +++ b/packages/fes-plugin-layout/src/template/runtime.tpl @@ -10,7 +10,7 @@ export function rootContainer(childComponent, args) { type: ApplyPluginsType.modify, initialValue: {}, }); - const localeShared = plugin.openShared("locale"); + const localeShared = plugin.getShared("locale"); const routeConfig = getRoutes(); userConfig.menus = fillMenuData(userConfig.menus, routeConfig); return () => { diff --git a/packages/fes-runtime/src/plugin/index.js b/packages/fes-runtime/src/plugin/index.js index 1fea1ad5..a6a70c56 100644 --- a/packages/fes-runtime/src/plugin/index.js +++ b/packages/fes-runtime/src/plugin/index.js @@ -31,7 +31,7 @@ export default class Plugin { this.shared[key] = obj; } - openShared(key) { + getShared(key) { return this.shared[key]; }