Browse Source

fix(config-provider): fix ConfigProvider.config is not function close #6528 (#6529)

pull/6538/head
Zev Zhu 2 years ago committed by GitHub
parent
commit
b61c88e5df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/config-provider/index.tsx

2
components/config-provider/index.tsx

@ -289,6 +289,8 @@ const ConfigProvider = defineComponent({
},
});
ConfigProvider.config = setGlobalConfig;
ConfigProvider.install = function (app: App) {
app.component(ConfigProvider.name, ConfigProvider);
};

Loading…
Cancel
Save