diff --git a/components/config-provider/index.jsx b/components/config-provider/index.jsx index 062b7bf923..b97cd77c7a 100644 --- a/components/config-provider/index.jsx +++ b/components/config-provider/index.jsx @@ -7,7 +7,7 @@ import Base from '../base'; function getWatch(keys = []) { const watch = {}; keys.forEach(k => { - watch[k] = function() { + watch[k] = function(value) { this._proxyVm._data[k] = value; }; });