From 1746696472215287e982fea04cc03e7c44fe69aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=87=E7=BA=AF?= Date: Tue, 5 Jan 2021 11:26:20 +0800 Subject: [PATCH] fix: openShared to getShared --- packages/fes-plugin-layout/src/template/runtime.tpl | 2 +- packages/fes-runtime/src/plugin/index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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]; }